-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
21 lines (16 loc) · 932 Bytes
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.trinitydevelopers.mcpeaddon.fnafpe"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="net.zhuoweizhang.mcpelauncher.ADDON"/>
<!-- This is the platform API where NativeActivity was introduced. -->
<uses-sdk android:minSdkVersion="9" />
<!-- This .apk has no Java code itself, so set hasCode to false. -->
<application android:label="@string/app_name" android:hasCode="false">
<!-- metadata specifying the library name. must match Android.mk.-->
<meta-data android:name="net.zhuoweizhang.mcpelauncher.api.nativelibname"
android:value="com.trinitydevelopers.mcpeaddon.fnafpe"/>
<meta-data android:name="net.zhuoweizhang.mcpelauncher.api.targetmcpeversion" android:value="0.12.1"/>
</application>
</manifest>