-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
54 lines (54 loc) · 4.17 KB
/
AndroidManifest.xml
File metadata and controls
54 lines (54 loc) · 4.17 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
<?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" package="com.bandainamcoent.aktposjp">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="com.android.vending.BILLING"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<permission android:name="com.bandainamcoent.aktposjp.permission.C2D_MESSAGE" android:protectionLevel="signature"/>
<uses-permission android:name="com.bandainamcoent.aktposjp.permission.C2D_MESSAGE"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
<supports-screens android:xlargeScreens="true"/>
<uses-feature android:glEsVersion="0x00020000"/>
<application android:debuggable="false" android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
<activity android:configChanges="fontScale|keyboard|keyboardHidden|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|touchscreen|uiMode" android:exported="true" android:label="@string/app_name" android:launchMode="singleTask" android:name="com.bandainamcoent.aktposjp.splash" android:screenOrientation="sensorPortrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:configChanges="fontScale|keyboard|keyboardHidden|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|touchscreen|uiMode" android:exported="true" android:launchMode="singleTask" android:name="com.bandainamcoent.aktposjp.cmc012" android:screenOrientation="sensorPortrait">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="mobage-jp-12023378"/>
<data android:scheme="dena-fox-12023378"/>
<data android:scheme="sksh-590"/>
</intent-filter>
</activity>
<receiver android:exported="false" android:name="com.bandainamcoent.aktposjp.local_notification_receiver" android:process=":remote"/>
<activity android:exported="false" android:name="jp.dena.sakasho.app.SakashoIabPurchasingActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
<receiver android:exported="true" android:name="jp.appAdForce.android.InstallReceiver">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER"/>
</intent-filter>
</receiver>
<meta-data android:name="APPADFORCE_APP_ID" android:value="5152"/>
<meta-data android:name="APPADFORCE_SERVER_URL" android:value="01c2039212f54cebb80526f880beaa11c1fee0f08bcb85e8cb084b8b9557754645"/>
<meta-data android:name="APPADFORCE_CRYPTO_SALT" android:value="d4fc57c30fff488196ae88174c3a38e92c9ca9bb"/>
<receiver android:name="jp.dena.sakasho.app.SakashoPushNotificationReceiver" android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE"/>
<category android:name="mobage-jp-12023378"/>
</intent-filter>
<intent-filter>
<action android:name="com.google.android.c2dm.intent.REGISTRATION"/>
<category android:name="mobage-jp-12023378"/>
</intent-filter>
</receiver>
<service android:name=".GcmIntentService"/>
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
</application>
</manifest>