diff --git a/src/api-impl/android/content/Intent.java b/src/api-impl/android/content/Intent.java index 73d2c952..fbbaf8e8 100644 --- a/src/api-impl/android/content/Intent.java +++ b/src/api-impl/android/content/Intent.java @@ -200,6 +200,10 @@ public class Intent { return defaultValue; } + public Intent setAction(String action) { + return this; // FIXME + } + public String getAction() { return null; } @@ -241,6 +245,10 @@ public class Intent { return extras; } + public Intent addCategory(String action) { + return this; + } + @Override public String toString() { return "Intent [component=" + component + ", extras=" + extras + ", action=" + action + ", uri=" + data + "]"; diff --git a/src/api-impl/android/view/InputDevice.java b/src/api-impl/android/view/InputDevice.java index fd5a4337..bc3de467 100644 --- a/src/api-impl/android/view/InputDevice.java +++ b/src/api-impl/android/view/InputDevice.java @@ -19,6 +19,10 @@ public class InputDevice { return new InputDevice(); } + public int getSources() { + return 0; // FIXME + } + /* * FIXME: We pretend we can do literally everything here... */