mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-21 20:03:09 +00:00
update AGP to fix error on CI-build
This commit is contained in:
parent
ebe8547425
commit
83b429928f
4 changed files with 1 additions and 7 deletions
|
@ -9,7 +9,7 @@ buildscript {
|
|||
maven { url "https://plugins.gradle.org/m2/" }
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.5.3'
|
||||
classpath 'com.android.tools.build:gradle:4.0.2'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.1.1"
|
||||
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.5.2.0"
|
||||
|
@ -34,7 +34,6 @@ ext{
|
|||
minSDK = 22
|
||||
targetSDK = 29
|
||||
compileSdkVersion = 29
|
||||
buildToolsVersion = "28.0.3"
|
||||
supportLibraryVersion = "28.0.0"
|
||||
constraintLayoutVersion = "1.1.3"
|
||||
}
|
||||
|
|
|
@ -7,7 +7,6 @@ String versionString = new File("versionfile").text.trim()
|
|||
|
||||
android {
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion rootProject.ext.minSDK
|
||||
|
|
|
@ -12,7 +12,6 @@ String versionString = new File("versionfile").text.trim()
|
|||
android {
|
||||
buildToolsVersion '27.0.3'
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||
defaultConfig {
|
||||
applicationId "de.nicidienase.chaosflix"
|
||||
manifestPlaceholders = [label: appName]
|
||||
|
@ -103,7 +102,6 @@ android {
|
|||
defaultConfig.testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
lintOptions.abortOnError = false
|
||||
dataBinding.enabled = true
|
||||
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||
playConfigs {
|
||||
prodNoFree {
|
||||
enabled = true
|
||||
|
|
|
@ -10,9 +10,7 @@ String appName = "Chaosflix"
|
|||
String versionString = new File("versionfile").text.trim()
|
||||
|
||||
android {
|
||||
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||
|
||||
defaultConfig {
|
||||
applicationId "de.nicidienase.chaosflix"
|
||||
|
|
Loading…
Reference in a new issue