-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAndroidManifest.xml
22 lines (16 loc) · 947 Bytes
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.darkserver.tessellation"
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" android:icon="@mipmap/ic_launcher">
<!-- metadata specifying the library name. must match Android.mk.-->
<meta-data android:name="net.zhuoweizhang.mcpelauncher.api.nativelibname"
android:value="com.darkserver.tessellation"/>
<meta-data android:name="net.zhuoweizhang.mcpelauncher.api.targetmcpeversion" android:value="0.12.1"/>
</application>
</manifest>