-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
21 lines (16 loc) · 975 Bytes
/
AndroidManifest.xml
File metadata and controls
21 lines (16 loc) · 975 Bytes
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.virtualoso.addon.invplus"
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="15" android:targetSdkVersion="22" />
<!-- This .apk has no Java code itself, so set hasCode to false. -->
<application android:label="@string/app_name" android:icon="@drawable/pack" android:hasCode="false">
<!-- metadata specifying the library name. must match Android.mk.-->
<meta-data android:name="net.zhuoweizhang.mcpelauncher.api.nativelibname"
android:value="com.virtualoso.addon.invplus"/>
<meta-data android:name="net.zhuoweizhang.mcpelauncher.api.targetmcpeversion" android:value="1.1.4.51"/>
</application>
</manifest>