-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
53 lines (47 loc) · 2.06 KB
/
AndroidManifest.xml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lxm.txtapp"
android:versionCode="1"
android:versionName="1.0" >
<supports-screens android:largeScreens="false" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name="com.lxm.txtapp.turntest"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.lxm.txtapp.MainActivity"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.lxm.txtapp.firstActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="cn.waps.OffersWebView"
android:configChanges="keyboardHidden|orientation" />
<!-- 以下属性为应?用ID,从万普后台获取 -->
<meta-data
android:name="WAPS_ID"
android:value="e6358c1c0bf3d4be808385ebe84df759" />
<!-- 以下属性为分发渠道ID,编码表参?见本?文档末附表 -->
<meta-data
android:name="WAPS_PID"
android:value="WAPS" />
</application>
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
</manifest>