From c71db5fc5a9715490a69ef8ef248668883bf5a13 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Tue, 1 Nov 2022 16:20:16 +0100 Subject: Update remoteExample to current API --- remoteExample/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'remoteExample/build.gradle') diff --git a/remoteExample/build.gradle b/remoteExample/build.gradle index 453dd529..a6adbaaa 100644 --- a/remoteExample/build.gradle +++ b/remoteExample/build.gradle @@ -7,11 +7,11 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 30 + compileSdkVersion 33 defaultConfig { minSdkVersion 15 - targetSdkVersion 30 + targetSdkVersion 33 versionCode 1 versionName "1.0" } -- cgit v1.2.3 From 653f6ef1bc1c4b857d8467d25bac5937d57102b5 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Mon, 17 Apr 2023 14:56:49 +0200 Subject: Update gradle files --- remoteExample/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'remoteExample/build.gradle') diff --git a/remoteExample/build.gradle b/remoteExample/build.gradle index a6adbaaa..648a30bf 100644 --- a/remoteExample/build.gradle +++ b/remoteExample/build.gradle @@ -15,6 +15,10 @@ android { versionCode 1 versionName "1.0" } + namespace 'de.blinkt.openvpn.remote' + buildFeatures { + aidl true + } } dependencies { -- cgit v1.2.3 From 5719f6dc6bc35096af5922d410c2175463fea974 Mon Sep 17 00:00:00 2001 From: conorsmith Date: Sun, 3 Sep 2023 16:40:59 +0200 Subject: Use gradle catalog to align project dependencies across modules/gradle files --- remoteExample/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'remoteExample/build.gradle') diff --git a/remoteExample/build.gradle b/remoteExample/build.gradle index 648a30bf..179555bb 100644 --- a/remoteExample/build.gradle +++ b/remoteExample/build.gradle @@ -3,8 +3,9 @@ * Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt */ -apply plugin: 'com.android.application' - +plugins { + alias libs.plugins.android.application +} android { compileSdkVersion 33 -- cgit v1.2.3