2019-03-25 15:07:08 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-03-18 16:25:48 +04:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-06-09 18:23:20 +04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-03-18 16:25:48 +04:00
|
|
|
package="dummydomain.yetanothercallblocker">
|
|
|
|
|
2019-03-25 15:07:08 +04:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_CALL_LOG" />
|
2019-06-09 22:13:27 +04:00
|
|
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
2020-01-16 12:42:29 +04:00
|
|
|
<uses-permission android:name="android.permission.ANSWER_PHONE_CALLS" />
|
2020-05-07 17:46:32 +04:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2019-03-25 15:07:08 +04:00
|
|
|
|
2020-01-16 12:42:29 +04:00
|
|
|
<!-- may be needed for call blocking on Android 9, also requires to be installed as a system app -->
|
2019-12-01 13:47:00 +04:00
|
|
|
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
2019-03-18 16:25:48 +04:00
|
|
|
<application
|
2019-03-25 15:07:08 +04:00
|
|
|
android:name=".App"
|
2019-03-18 16:25:48 +04:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2019-06-09 18:23:20 +04:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
<activity android:name=".MainActivity">
|
2019-03-25 15:07:08 +04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-05-16 19:44:55 +04:00
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
|
|
|
android:label="@string/title_settings_activity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".MainActivity" />
|
|
|
|
</activity>
|
2019-06-09 18:23:20 +04:00
|
|
|
<activity
|
|
|
|
android:name=".DebugActivity"
|
|
|
|
android:label="@string/debug_activity_label" />
|
2019-03-25 15:07:08 +04:00
|
|
|
<activity
|
|
|
|
android:name=".ReviewsActivity"
|
|
|
|
android:label="@string/title_activity_reviews"
|
2019-06-09 18:23:20 +04:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2019-03-25 15:07:08 +04:00
|
|
|
|
2020-05-07 21:35:55 +04:00
|
|
|
<activity
|
|
|
|
android:name=".InfoDialogActivity"
|
|
|
|
android:autoRemoveFromRecents="true"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:noHistory="true"
|
|
|
|
android:theme="@style/DialogBackgroundTheme" />
|
|
|
|
|
2019-03-25 15:07:08 +04:00
|
|
|
<receiver
|
|
|
|
android:name=".CallReceiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.PHONE_STATE" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2020-05-06 13:15:34 +04:00
|
|
|
|
|
|
|
<service android:name=".work.TaskService" />
|
2019-03-25 15:07:08 +04:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|