From 9697ada9bf7c043162ff577b842eaa5ebfdd390c Mon Sep 17 00:00:00 2001 From: Alex Babich Date: Mon, 1 Jul 2024 10:04:08 +0300 Subject: [PATCH 1/2] - Added namespace --- android/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index 8aa41d9..b0e6561 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -25,6 +25,9 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { + if (project.android.hasProperty('namespace')) { + namespace 'io.mway.managed_configurations' + } compileSdkVersion 31 sourceSets { From 8282b416ef5e045e6b4253def83e440be1d374fd Mon Sep 17 00:00:00 2001 From: Alex Babich Date: Mon, 1 Jul 2024 12:40:28 +0300 Subject: [PATCH 2/2] - Added java 17 --- android/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index b0e6561..6878afc 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -36,6 +36,11 @@ android { defaultConfig { minSdkVersion 21 } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 + } } dependencies {