-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
62 lines (56 loc) · 3.46 KB
/
AndroidManifest.xml
File metadata and controls
62 lines (56 loc) · 3.46 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sam.hex"
android:versionCode="5"
android:versionName="1.3"
android:installLocation="auto" >
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="15"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application android:icon="@drawable/icon" android:label="@string/app_name" >
<activity android:name=".startup.StartUpActivity" android:label="@string/app_name" android:theme="@style/LightTheme">
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="@string/app_name" android:name=".HexGame" android:theme="@style/LightTheme">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" />
<data android:host="*" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*\\.rhex" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
<data android:host="*" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*\\.rhex" />
</intent-filter>
</activity>
<activity android:label="@string/preferences" android:name=".Preferences" android:theme="@style/LightTheme" />
<activity android:label="@string/rules" android:name=".startup.InstructionsActivity" android:theme="@style/LightTheme" />
<activity android:label="@string/app_name" android:name=".lan.LocalLobbyActivity" android:theme="@style/ListFont" />
<activity android:label="@string/app_name" android:name=".net.LoginActivity" android:theme="@style/LightTheme" />
<activity android:label="@string/app_name" android:name=".net.RegistrationActivity" android:theme="@style/LightTheme" />
<activity android:label="@string/app_name" android:name=".net.NetLobbyActivity" android:theme="@style/LightTheme" />
<activity android:label="@string/app_name" android:name=".net.WaitingRoomActivity" android:theme="@style/LightTheme" />
<activity android:label="@string/app_name" android:name=".net.NetHexGame" android:theme="@style/LightTheme" />
<activity android:label="@string/app_name" android:name=".replay.FileExplore" android:theme="@style/LightTheme" />
<activity android:name="com.google.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize">
<meta-data
android:name="ADMOB_PUBLISHER_ID"
android:value="a14f8fac6b145e0"/>
</activity>
</application>
</manifest>