|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.langerhans.one"
|
|
android:versionCode="27"
|
|
android:versionName="2.8.5" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="17"
|
|
android:targetSdkVersion="19" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.ACCESS_SUPERUSER"/>
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
allowSkinChange="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@android:style/Theme.Holo.Light.DarkActionBar"
|
|
android:backupAgent=".utils.PrefBackupAgent">
|
|
<activity
|
|
android:name="com.langerhans.one.MainActivity"
|
|
android:label="@string/app_name"
|
|
android:configChanges="keyboardHidden|orientation|screenSize" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<category android:name="com.htc.settings.category.PLUGIN_ENTRY"/>
|
|
</intent-filter>
|
|
<meta-data android:name="plugAnchorItem" android:value="personalize"/>
|
|
<meta-data android:name="plugAnchorShift" android:value="-1.0"/>
|
|
</activity>
|
|
<activity
|
|
android:name="com.langerhans.one.ReorderActivity"
|
|
android:label="@string/eqs_reorder"
|
|
android:configChanges="keyboardHidden|orientation|screenSize" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.PREFERENCE" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:theme="@style/Invisible" android:name="com.langerhans.one.DimmedActivity" android:exported="true" android:launchMode="singleInstance" android:excludeFromRecents="true" />
|
|
<activity android:name="com.langerhans.one.AboutScreen" android:screenOrientation="portrait" />
|
|
<receiver android:name="com.langerhans.one.PrefsFragment$SetButtonBacklight" android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="com.langerhans.one.UPDATEBACKLIGHT" />
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<meta-data android:value="true" android:name="xposedmodule"/>
|
|
<meta-data android:value="42+" android:name="xposedminversion"/>
|
|
<meta-data android:value="Mods for Sense 5 and 5.5 ROMs" android:name="xposeddescription"/>
|
|
<meta-data android:name="com.google.android.backup.api_key" android:value="AEdPqrEAAAAIhSrH0pp-xHb2SyhIIwRLpyQ3goUydSUQJT9GrQ" />
|
|
</application>
|
|
|
|
</manifest>
|