mirror of
https://gitlab.com/xynngh/YetAnotherCallBlocker.git
synced 2025-04-01 12:30:20 +02:00
Update targetSdkVersion to 30
This commit is contained in:
parent
4fc9f99158
commit
15c7372c42
@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- `targetSdkVersion` updated to 30 (Android 11).
|
||||||
- Updated Polish translation thanks to Evo (@verahawk).
|
- Updated Polish translation thanks to Evo (@verahawk).
|
||||||
- Updated Norwegian Bokmål translation thanks to Allan Nordhøy (@kingu).
|
- 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/)).
|
- 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
|
### Changed
|
||||||
|
|
||||||
- Improved UX of enabling/disabling the "advanced call blocking mode".
|
- 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 Turkish translation thanks to Oğuz Ersen (@ersen).
|
||||||
- Updated Polish translation thanks to Evo (@verahawk).
|
- Updated Polish translation thanks to Evo (@verahawk).
|
||||||
|
|
||||||
|
@ -2,11 +2,11 @@ apply plugin: 'com.android.application'
|
|||||||
apply plugin: 'org.greenrobot.greendao'
|
apply plugin: 'org.greenrobot.greendao'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 29
|
compileSdkVersion 30
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "dummydomain.yetanothercallblocker"
|
applicationId "dummydomain.yetanothercallblocker"
|
||||||
minSdkVersion 14
|
minSdkVersion 14
|
||||||
targetSdkVersion 29
|
targetSdkVersion 30
|
||||||
versionCode 5120
|
versionCode 5120
|
||||||
versionName "0.5.12"
|
versionName "0.5.12"
|
||||||
|
|
||||||
|
@ -13,6 +13,16 @@
|
|||||||
<uses-permission android:name="android.permission.READ_LOG" android:maxSdkVersion="15" />
|
<uses-permission android:name="android.permission.READ_LOG" android:maxSdkVersion="15" />
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
<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
|
<application
|
||||||
android:name=".App"
|
android:name=".App"
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user