Target API30
This commit is contained in:
parent
41efff3382
commit
bd737145c8
|
@ -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"'
|
||||
|
|
|
@ -40,6 +40,9 @@ android {
|
|||
|
||||
signingConfigs {
|
||||
releaseConfig {
|
||||
v1SigningEnabled true
|
||||
v2SigningEnabled true
|
||||
|
||||
if (project.hasProperty("releaseStoreFile")) {
|
||||
storeFile file(releaseStoreFile)
|
||||
} else {
|
||||
|
|
|
@ -42,9 +42,9 @@ subprojects {
|
|||
}
|
||||
|
||||
project.ext {
|
||||
compileSdkVersion = 28
|
||||
compileSdkVersion = 30
|
||||
minSdkVersion = 16
|
||||
targetSdkVersion = 28
|
||||
targetSdkVersion = 30
|
||||
|
||||
// AndroidX
|
||||
annotationVersion = "1.1.0"
|
||||
|
|
Loading…
Reference in New Issue