Update targetSdkVersion to 30

This commit is contained in:
xynngh 2021-02-09 20:34:32 +04:00
parent 4fc9f99158
commit 15c7372c42
3 changed files with 14 additions and 3 deletions

View File

@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed
- `targetSdkVersion` updated to 30 (Android 11).
- Updated Polish translation thanks to Evo (@verahawk).
- Updated Norwegian Bokmål translation thanks to Allan Nordhøy (@kingu).
- Updated Ukrainian translation thanks to z Z z ([@ruslan.zeezu](https://hosted.weblate.org/user/ruslan.zeezu/)).
@ -87,7 +88,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed
- Improved UX of enabling/disabling the "advanced call blocking mode".
- `targetSdkVersion` updated to 29.
- `targetSdkVersion` updated to 29 (Android 10).
- Updated Turkish translation thanks to Oğuz Ersen (@ersen).
- Updated Polish translation thanks to Evo (@verahawk).

View File

@ -2,11 +2,11 @@ apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao'
android {
compileSdkVersion 29
compileSdkVersion 30
defaultConfig {
applicationId "dummydomain.yetanothercallblocker"
minSdkVersion 14
targetSdkVersion 29
targetSdkVersion 30
versionCode 5120
versionName "0.5.12"

View File

@ -13,6 +13,16 @@
<uses-permission android:name="android.permission.READ_LOG" android:maxSdkVersion="15" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<queries>
<intent>
<action android:name="android.intent.action.DIAL" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="tel" />
</intent>
</queries>
<application
android:name=".App"
android:allowBackup="true"