BUILD: upgrade to Gradle 7.0

- upgrade Kotlin to 1.4.32
- upgrade android gradle plugin to 4.1.3

- remove `versionNameSuffix`
- remove `buildToolsVersion` as android gradle plugin already done it
- remove unnecessary `targetCompatibility` and `sourceCompatibility` in subprojects
- remove proguard
- remove NeoTermBridgeExample
- remove unused tests
- remove bintray upload of NeoTermBridge
This commit is contained in:
imkiva
2021-05-07 18:44:45 +08:00
committed by Kiva Oyama
parent 6fd3582be0
commit 9d466997f7
47 changed files with 9 additions and 41482 deletions

View File

@ -6,9 +6,6 @@ dependencies {
compile rootProject.ext.deps["kotlin-stdlib"]
}
sourceCompatibility = "1.7"
targetCompatibility = "1.7"
buildscript {
repositories {
mavenCentral()
@ -30,7 +27,6 @@ compileTestKotlin {
jvmTarget = "1.8"
}
}
dependencies {
testImplementation rootProject.ext.deps["junit"]
}