diff options
author | Oxore <oxore@protonmail.com> | 2019-10-09 03:14:23 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2019-10-09 03:14:23 +0300 |
commit | a726f36f75010e76654747ef26f909f502b0f5b0 (patch) | |
tree | b2c07cffaf117632610a6e36291ffc30ca53f5dc /AndroidManifest.xml |
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 17 |
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> |