]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
android: Set compile-/targetSdkVersion to 28
authorTobias Brunner <tobias@strongswan.org>
Tue, 13 Aug 2019 12:16:11 +0000 (14:16 +0200)
committerTobias Brunner <tobias@strongswan.org>
Mon, 26 Aug 2019 09:20:48 +0000 (11:20 +0200)
This is mandatory for new apps since August 1, 2019 and will be for existing
apps in November 1, 2019.

src/frontends/android/app/build.gradle

index f37ece8671f85f1af9653fea7069d4e6f08c8776..3ac62d937a4d097bb8ec1e57d08bef73b2697571 100644 (file)
@@ -1,12 +1,12 @@
 apply plugin: 'com.android.application'
 
 android {
-    compileSdkVersion 26
+    compileSdkVersion 28
 
     defaultConfig {
         applicationId "org.strongswan.android"
         minSdkVersion 15
-        targetSdkVersion 26
+        targetSdkVersion 28
         versionCode 64
         versionName "2.1.1"
     }
@@ -46,9 +46,9 @@ android {
 }
 
 dependencies {
-    implementation 'com.android.support:appcompat-v7:26.0.2'
-    implementation 'com.android.support:design:26.0.2'
-    implementation 'com.android.support:preference-v7:26.0.2'
-    implementation 'com.android.support:support-v4:26.0.2'
+    implementation 'com.android.support:appcompat-v7:28.0.0'
+    implementation 'com.android.support:design:28.0.0'
+    implementation 'com.android.support:preference-v7:28.0.0'
+    implementation 'com.android.support:support-v4:28.0.0'
     testImplementation 'junit:junit:4.12'
 }