summaryrefslogtreecommitdiff
path: root/templates/AndroidManifest.template
diff options
context:
space:
mode:
authorJustin Klaassen <justinklaassen@google.com>2017-09-15 17:51:35 -0400
committerJustin Klaassen <justinklaassen@google.com>2017-09-15 17:51:35 -0400
commitf276aee073961ac32d9b86a34aefe4b927265613 (patch)
treeaef42bcbf55bbc25468a4993cb221fff8e655ee0 /templates/AndroidManifest.template
parent0233688bdd65d95f026ad701215cfe0a16267508 (diff)
downloadandroid-28-f276aee073961ac32d9b86a34aefe4b927265613.tar.gz
Import Android SDK Platform PI [4335822]
/google/data/ro/projects/android/fetch_artifact \ --bid 4335822 \ --target sdk_phone_armv7-win_sdk \ sdk-repo-linux-platforms-4335822.zip AndroidVersion.ApiLevel has been modified to appear as 28 Change-Id: I7c8180d430802c7cee9aea80a6ec310f7a9ea534
Diffstat (limited to 'templates/AndroidManifest.template')
-rw-r--r--templates/AndroidManifest.template15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/AndroidManifest.template b/templates/AndroidManifest.template
new file mode 100644
index 00000000..4d1e0531
--- /dev/null
+++ b/templates/AndroidManifest.template
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="PACKAGE"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <application android:label="@string/app_name" ICON>
+ <activity android:name="ACTIVITY_ENTRY_NAME"
+ 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>