miracle2k / wifilock

Android App, ensures that the Wi-Fi radio will stay awake when the Phone goes to sleep.

This URL has Read+Write access

wifilock / AndroidManifest.xml
100644 26 lines (26 sloc) 1.241 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.elsdoerfer.wifilock"
      android:versionName="2.0.0" android:versionCode="7">
<uses-sdk android:minSdkVersion="1" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".ToggleActivity"
              android:label="@string/app_name"
              android:description="@string/app_description"
              android:theme="@style/Theme"
              android:excludeFromRecents="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <service android:name=".WifiLockService" android:enabled="false" />
    <receiver android:name=".BootReceiver" android:enabled="false">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>
</application>
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
<uses-permission android:name="android.permission.WRITE_SETTINGS"></uses-permission>
</manifest>