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" />
|
2020-06-13 13:06:35 +04:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2020-07-04 15:51:26 +04:00
|
|
|
<uses-permission android:name="android.permission.READ_LOG" android:maxSdkVersion="15" />
|
2020-09-08 19:09:41 +04:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2019-03-25 15:07:08 +04:00
|
|
|
|
2021-02-09 20:34:32 +04:00
|
|
|
<queries>
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.DIAL" />
|
|
|
|
</intent>
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<data android:scheme="tel" />
|
|
|
|
</intent>
|
|
|
|
</queries>
|
|
|
|
|
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">
|
2020-06-12 16:19:15 +04:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2021-10-30 14:36:07 +04:00
|
|
|
android:exported="true"
|
2020-06-12 16:19:15 +04:00
|
|
|
android:launchMode="singleTop">
|
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-08-08 16:20:06 +04:00
|
|
|
<activity
|
|
|
|
android:name=".LookupNumberActivity"
|
|
|
|
android:label="@string/title_lookup_number"
|
|
|
|
android:parentActivityName=".MainActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".MainActivity" />
|
|
|
|
</activity>
|
2020-08-04 01:19:16 +04:00
|
|
|
<activity
|
|
|
|
android:name=".BlacklistActivity"
|
|
|
|
android:label="@string/title_blacklist_activity"
|
2020-09-05 19:37:54 +04:00
|
|
|
android:launchMode="singleTop"
|
2020-08-04 01:19:16 +04:00
|
|
|
android:parentActivityName=".MainActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".MainActivity" />
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".EditBlacklistItemActivity"
|
|
|
|
android:label="@string/title_add_blacklist_item_activity"
|
|
|
|
android:parentActivityName=".BlacklistActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".BlacklistActivity" />
|
|
|
|
</activity>
|
2020-05-16 19:44:55 +04:00
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
2020-08-04 01:19:16 +04:00
|
|
|
android:label="@string/title_settings_activity"
|
|
|
|
android:parentActivityName=".MainActivity">
|
2020-05-16 19:44:55 +04:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".MainActivity" />
|
|
|
|
</activity>
|
2019-06-09 18:23:20 +04:00
|
|
|
<activity
|
2020-08-08 16:43:49 +04:00
|
|
|
android:name=".DbManagementActivity"
|
|
|
|
android:label="@string/db_management_activity_label" />
|
2019-03-25 15:07:08 +04:00
|
|
|
<activity
|
|
|
|
android:name=".ReviewsActivity"
|
|
|
|
android:label="@string/title_activity_reviews"
|
2020-06-12 16:19:15 +04:00
|
|
|
android:launchMode="singleTop"
|
2019-06-09 18:23:20 +04:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
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" />
|
2020-06-21 18:40:58 +04:00
|
|
|
<activity
|
|
|
|
android:name=".DummyDialerActivity"
|
|
|
|
android:autoRemoveFromRecents="true"
|
2020-07-02 19:12:04 +04:00
|
|
|
android:directBootAware="true"
|
2020-06-21 18:40:58 +04:00
|
|
|
android:excludeFromRecents="true"
|
2021-10-30 14:36:07 +04:00
|
|
|
android:exported="true"
|
2020-06-21 18:40:58 +04:00
|
|
|
android:noHistory="true"
|
|
|
|
android:theme="@style/DialogBackgroundTheme">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.intent.action.DIAL" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="tel" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.DIAL" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-10-18 16:48:33 +04:00
|
|
|
<activity
|
|
|
|
android:name=".AboutActivity"
|
|
|
|
android:label="@string/about_activity"
|
|
|
|
android:parentActivityName=".MainActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".MainActivity" />
|
|
|
|
</activity>
|
2020-06-21 18:40:58 +04:00
|
|
|
|
2019-03-25 15:07:08 +04:00
|
|
|
<receiver
|
2020-09-08 19:09:41 +04:00
|
|
|
android:name=".StartupReceiver"
|
2020-07-02 19:12:04 +04:00
|
|
|
android:directBootAware="true"
|
2021-10-30 14:36:07 +04:00
|
|
|
android:enabled="false"
|
|
|
|
android:exported="true">
|
2020-09-08 19:09:41 +04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
<receiver
|
2020-09-11 13:28:13 +04:00
|
|
|
android:name=".PhoneStateBroadcastReceiver"
|
2021-10-30 14:36:07 +04:00
|
|
|
android:directBootAware="true"
|
|
|
|
android:exported="true">
|
2019-03-25 15:07:08 +04:00
|
|
|
<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" />
|
2020-09-08 19:09:41 +04:00
|
|
|
<service
|
|
|
|
android:name=".CallMonitoringService"
|
|
|
|
android:description="@string/monitoring_service_description"
|
|
|
|
android:directBootAware="true"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/monitoring_service_label" />
|
2020-06-21 18:40:58 +04:00
|
|
|
<service
|
|
|
|
android:name=".CallScreeningServiceImpl"
|
2020-07-02 19:12:04 +04:00
|
|
|
android:directBootAware="true"
|
2021-10-30 14:36:07 +04:00
|
|
|
android:exported="true"
|
2020-06-21 18:40:58 +04:00
|
|
|
android:permission="android.permission.BIND_SCREENING_SERVICE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.telecom.CallScreeningService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2020-07-30 00:34:48 +04:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
2020-09-10 23:11:39 +04:00
|
|
|
android:authorities="${applicationId}.fileprovider"
|
2020-07-30 00:34:48 +04:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
</provider>
|
2019-03-25 15:07:08 +04:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|