-
Notifications
You must be signed in to change notification settings - Fork 3
/
AndroidManifest.xml
61 lines (55 loc) · 2.61 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
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="es.pulimento.wifi"
android:installLocation="auto"
android:versionCode="132"
android:versionName="@string/app_version" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- ADMOB -->
<uses-permission android:name="android.permission.INTERNET" /> <!-- ADMOB -->
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <!-- STARTUP -->
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> <!-- STARTUP -->
<uses-permission android:name="android.permission.VIBRATE" /> <!-- BEEP -->
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<application
android:configChanges="orientation|keyboard|keyboardHidden"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".ui.MainActivity"
android:configChanges="orientation|keyboard|keyboardHidden|screenLayout"
android:theme="@android:style/Theme.Holo.Light.Dialog.NoActionBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ui.Preferences"
android:configChanges="orientation|keyboard|keyboardHidden|screenLayout"
android:label="@string/menu_settings" />
<activity
android:name=".ui.ShowPassActivity"
android:configChanges="orientation|keyboard|keyboardHidden|screenLayout" />
<activity
android:name=".ui.HomeActivity"
android:configChanges="orientation|keyboard|keyboardHidden|screenLayout"
android:windowSoftInputMode="adjustResize" />
<activity
android:name=".ui.AboutActivity"
android:configChanges="orientation|keyboard|keyboardHidden|screenLayout"
android:label="@string/menu_about" />
<activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
</application>
</manifest>