aboutsummaryrefslogtreecommitdiff
path: root/FilledApp/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'FilledApp/AndroidManifest.xml')
-rw-r--r--FilledApp/AndroidManifest.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/FilledApp/AndroidManifest.xml b/FilledApp/AndroidManifest.xml
new file mode 100644
index 0000000..383be7e
--- /dev/null
+++ b/FilledApp/AndroidManifest.xml
@@ -0,0 +1,18 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="foo.bar.filled" >
+
+ <application
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name"
+ android:allowBackup="false" >
+ <activity
+ android:name=".MainActivity"
+ android:label="@string/app_name" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+
+</manifest>