aboutsummaryrefslogtreecommitdiff
path: root/RotaryPlayground/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'RotaryPlayground/AndroidManifest.xml')
-rw-r--r--RotaryPlayground/AndroidManifest.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/RotaryPlayground/AndroidManifest.xml b/RotaryPlayground/AndroidManifest.xml
index 4aac33f..be6d847 100644
--- a/RotaryPlayground/AndroidManifest.xml
+++ b/RotaryPlayground/AndroidManifest.xml
@@ -23,11 +23,21 @@
<activity
android:name=".RotaryActivity"
android:label="@string/app_name"
- android:allowEmbedded="true">
+ android:allowEmbedded="true"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
+ <!-- Define app-specific custom off-screen nudge up action:
+ GLOBAL_ACTION_NOTIFICATIONS -->
+ <meta-data android:name="nudge.up.globalAction" android:value="4"/>
+ <!-- Define app-specific custom off-screen nudge left action: KEYCODE_BACK -->
+ <meta-data android:name="nudge.left.keyCode" android:value="4"/>
+ <!-- Define app-specific custom off-screen nudge down action: launch Settings -->
+ <meta-data
+ android:name="nudge.down.intent"
+ android:value="intent:#Intent;action=android.settings.SETTINGS;category=android.intent.category.DEFAULT;end"/>
</activity>
</application>
</manifest> \ No newline at end of file