aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/build.gradle
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2020-08-23 00:42:51 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2020-08-23 00:42:51 +0530
commit1fa15e76e3f86930076a819e50f2ca8358ba2029 (patch)
tree947f55bec12bd3e580f231cd134441dcc2f80ae6 /ui/build.gradle
parentbuild: uprev to Gradle 6.6 (diff)
downloadwireguard-android-1fa15e76e3f86930076a819e50f2ca8358ba2029.tar.xz
wireguard-android-1fa15e76e3f86930076a819e50f2ca8358ba2029.zip
build: minor cleanups and reorganization
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to '')
-rw-r--r--ui/build.gradle23
1 files changed, 10 insertions, 13 deletions
diff --git a/ui/build.gradle b/ui/build.gradle
index e59fa764..40671740 100644
--- a/ui/build.gradle
+++ b/ui/build.gradle
@@ -11,15 +11,6 @@ final def keystorePropertiesFile = rootProject.file("keystore.properties")
android {
buildToolsVersion '29.0.3'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
- kotlinOptions {
- jvmTarget = '1.8'
- }
- }
compileSdkVersion 29
buildFeatures.dataBinding = true
buildFeatures.viewBinding = true
@@ -31,12 +22,12 @@ android {
versionName wireguardVersionName
buildConfigField 'int', 'MIN_SDK_VERSION', "$minSdkVersion.apiLevel"
}
- // If the keystore file exists
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
if (keystorePropertiesFile.exists()) {
- // Initialize a new Properties() object called keystoreProperties.
final def keystoreProperties = new Properties()
-
- // Load your keystore.properties file into the keystoreProperties object.
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
signingConfigs {
@@ -87,3 +78,9 @@ tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:unchecked'
options.deprecation = true
}
+
+tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
+ kotlinOptions {
+ jvmTarget = JavaVersion.VERSION_1_8
+ }
+}