diff --git a/android/app/build.gradle b/android/app/build.gradle index 26be35c..7f9a63a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -26,6 +26,8 @@ apply plugin: 'kotlin-android' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { + namespace "net.defined.mobile_nebula" + compileSdkVersion 33 ndkVersion flutter.ndkVersion @@ -44,8 +46,8 @@ android { defaultConfig { applicationId "net.defined.mobile_nebula" - minSdkVersion 23 //flutter.minSdkVersion - targetSdkVersion 31 //flutter.targetSdkVersion + minSdkVersion 26 //flutter.minSdkVersion + targetSdkVersion 33 //flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName } @@ -81,7 +83,7 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion" implementation "androidx.security:security-crypto:1.0.0" implementation "androidx.work:work-runtime-ktx:$workVersion" - implementation 'com.google.code.gson:gson:2.8.6' + implementation 'com.google.code.gson:gson:2.8.9' implementation "com.google.guava:guava:31.0.1-android" implementation project(':mobileNebula') diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index bc4f1bf..f880684 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -1,5 +1,4 @@ - + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 7148619..ca5782e 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,6 +1,5 @@ + xmlns:tools="http://schemas.android.com/tools"> diff --git a/android/build.gradle b/android/build.gradle index 36aa165..3c12826 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { workVersion = "2.7.1" - kotlinVersion = '1.6.10' + kotlinVersion = '1.7.20' } repositories { @@ -10,7 +10,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:7.1.2' + classpath 'com.android.tools.build:gradle:7.3.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" } }