summaryrefslogtreecommitdiff
path: root/main/build.gradle.kts
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2020-07-31 13:05:44 +0200
committerArne Schwabe <arne@rfc2549.org>2020-07-31 13:05:44 +0200
commit81f9dffbb8bdfd6238e1ac9d7de4ab6be2ed65c7 (patch)
treeedaf8cd41f1ccde57a2208f7ab1ab90f91dff78d /main/build.gradle.kts
parentb55f0075b698d316d63bfd91401df85f4443f260 (diff)
Small fixes
Diffstat (limited to 'main/build.gradle.kts')
-rw-r--r--main/build.gradle.kts8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/build.gradle.kts b/main/build.gradle.kts
index e88aec35..f1e2a79f 100644
--- a/main/build.gradle.kts
+++ b/main/build.gradle.kts
@@ -13,11 +13,11 @@ plugins {
}
android {
- compileSdkVersion(29)
+ compileSdkVersion(30)
defaultConfig {
minSdkVersion(14)
- targetSdkVersion(29) //'Q'.toInt()
+ targetSdkVersion(30) //'Q'.toInt()
versionCode = 169
versionName = "0.7.16"
@@ -150,7 +150,7 @@ android.applicationVariants.all(object : Action<ApplicationVariant> {
override fun execute(variant: ApplicationVariant) {
val sourceDir = registerGenTask(variant.name, variant.baseName.replace("-", "/"))
val task = tasks.named("generateOpenVPN3Swig${variant.name}").get()
-
+
variant.registerJavaGeneratingTask(task, sourceDir)
}
})
@@ -170,7 +170,7 @@ dependencies {
// Is there a nicer way to do this?
dependencies.add("uiImplementation", "androidx.constraintlayout:constraintlayout:1.1.3")
- dependencies.add("uiImplementation", "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.70")
+ dependencies.add("uiImplementation", "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72")
dependencies.add("uiImplementation", "androidx.cardview:cardview:1.0.0")
dependencies.add("uiImplementation", "androidx.recyclerview:recyclerview:1.0.0")
dependencies.add("uiImplementation", "androidx.appcompat:appcompat:1.1.0")