summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-10-17 10:37:32 +0400
committerAndrew Dolgov <[email protected]>2013-10-17 10:37:32 +0400
commit45116bd86bed97ec87055e6454891c7db6dad21d (patch)
tree23dfaaeeff5add34730da4b5c0672d643235a634 /AndroidManifest.xml
parentd975ea568dff63948fc2bf1541e256bb2d1bc87c (diff)
experimental support for making launcher shortcuts (to headlinesactivity
only atm)
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index cbd3af06..bf3c52aa 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -11,6 +11,7 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+ <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<application
android:name=".GlobalState"
@@ -41,6 +42,9 @@
android:name=".HeadlinesActivity"
android:uiOptions="splitActionBarWhenNarrow"
android:label="@string/app_name" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ </intent-filter>
</activity>
<activity
android:name=".CommonActivity"