Merge pull request #4456 from ByteHamster/target-30

Target API30
This commit is contained in:
H. Lehmann 2020-09-29 13:33:03 +02:00 committed by GitHub
commit e771c2753f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View File

@ -8,7 +8,7 @@ jobs:
type: steps
default: []
docker:
- image: circleci/android:api-28
- image: circleci/android:api-30
working_directory: ~/AntennaPod
environment:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx1536m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError"'

View File

@ -42,6 +42,9 @@ android {
signingConfigs {
releaseConfig {
v1SigningEnabled true
v2SigningEnabled true
if (project.hasProperty("releaseStoreFile")) {
storeFile file(releaseStoreFile)
} else {

View File

@ -42,9 +42,9 @@ subprojects {
}
project.ext {
compileSdkVersion = 28
compileSdkVersion = 30
minSdkVersion = 16
targetSdkVersion = 28
targetSdkVersion = 30
// AndroidX
annotationVersion = "1.1.0"