summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2019-10-09 03:14:23 +0300
committerOxore <oxore@protonmail.com>2019-10-09 03:14:23 +0300
commita726f36f75010e76654747ef26f909f502b0f5b0 (patch)
treeb2c07cffaf117632610a6e36291ffc30ca53f5dc /AndroidManifest.xml
Initial commitHEADmaster
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..57ac2bb
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="tk.oxore.NativeArmv6"
+ android:versionCode="1"
+ android:versionName="1.0"
+ android:minSdkVersion="1"
+ >
+ <application android:label="@string/app_name" >
+ <activity android:name="DummyAct"
+ 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>