-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.xml
More file actions
37 lines (32 loc) · 1.47 KB
/
template.xml
File metadata and controls
37 lines (32 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
package="${package}"
android:versionName="@string/version"
android:versionCode="@integer/build">
<uses-sdk
android:minSdkVersion="${minSdkVersion}"
android:targetSdkVersion="${targetSdkVersion}"/>
<uses-permission android:name="android.permission.SET_RELEASE_APP"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:debuggable="true"
android:hasCode="${hasCode}"
android:supportsRtl="true"
android:label="@string/label"
tools:replace="android:icon,android:theme,android:allowBackup,label"
android:icon="@mipmap/icon">
<activity
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
android:label="@string/label"
android:name="${activity}"
android:exported="true">
<meta-data android:name="android.app.lib_name" android:value="${library}"/>
<meta-data android:name="android.app.func_name" android:value="${entry}"/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>