This repository has been archived by the owner on Nov 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
MSkjel
committed
Mar 14, 2019
1 parent
500d872
commit debfe05
Showing
103 changed files
with
2,616 additions
and
2,376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="tw.fatminmin.xposed.minminguard" > | ||
package="tw.fatminmin.xposed.minminguard"> | ||
|
||
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
|
||
<application | ||
android:name=".MyApplication" | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" > | ||
android:name=".MyApplication" | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme"> | ||
|
||
<activity | ||
android:name=".ui.MainActivity" | ||
android:label="@string/app_name" | ||
android:configChanges="keyboardHidden|orientation|screenSize" > | ||
android:name=".ui.MainActivity" | ||
android:label="@string/app_name" | ||
android:configChanges="keyboardHidden|orientation|screenSize"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<action android:name="android.intent.action.MAIN"/> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" /> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS"/> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity | ||
android:name=".ui.MinMinGuardIntro" | ||
android:label="@string/app_name" | ||
android:theme="@style/FullscreenTheme"> | ||
android:name=".ui.MinMinGuardIntro" | ||
android:label="@string/app_name" | ||
android:theme="@style/FullscreenTheme"> | ||
</activity> | ||
|
||
<provider | ||
android:name=".MinMinProvider" | ||
android:authorities="tw.fatminmin.xposed.minminguard" | ||
android:exported="true" /> | ||
android:name=".MinMinProvider" | ||
android:authorities="tw.fatminmin.xposed.minminguard" | ||
android:exported="true"/> | ||
|
||
<provider | ||
android:name=".ModSettingsProvider" | ||
android:authorities="tw.fatminmin.xposed.minminguard.modesettings" | ||
android:exported="true"/> | ||
android:name=".ModSettingsProvider" | ||
android:authorities="tw.fatminmin.xposed.minminguard.modesettings" | ||
android:exported="true"/> | ||
|
||
<meta-data | ||
android:name="xposedmodule" | ||
android:value="true" /> | ||
android:name="xposedmodule" | ||
android:value="true"/> | ||
<meta-data | ||
android:name="xposedminversion" | ||
android:value="2.0*" /> | ||
android:name="xposedminversion" | ||
android:value="2.0*"/> | ||
<meta-data | ||
android:name="xposeddescription" | ||
android:value="Ads blocker" /> | ||
android:name="xposeddescription" | ||
android:value="Ads blocker"/> | ||
|
||
<meta-data | ||
android:name="io.fabric.ApiKey" | ||
android:value="11b3bd0c3467e4848618141b36a73619c7ef4843" /> | ||
android:name="io.fabric.ApiKey" | ||
android:value="11b3bd0c3467e4848618141b36a73619c7ef4843"/> | ||
</application> | ||
|
||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.