Target API30

This commit is contained in:
ByteHamster 2020-09-28 11:08:41 +02:00
parent 41efff3382
commit bd737145c8
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

@ -40,6 +40,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"