forked from uncleLem/AndroidUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
25 lines (21 loc) · 1.13 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ua.a5.androidutils">
<uses-sdk android:minSdkVersion="13"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.android.vending.CHECK_LICENSE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<!-- Activity for MoreApps screen -->
<activity android:name="com.chartboost.sdk.CBDialogActivity"
android:configChanges="orientation|keyboard|keyboardHidden"
android:windowSoftInputMode="adjustResize"
android:theme="@android:style/Theme.Translucent"
android:launchMode="singleTop">
</activity>
<!-- Activity for Ads -->
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
/>
</application>
</manifest>