Compare commits

...

2 Commits

Author SHA1 Message Date
factory-droid[bot]
0acf59ddd7 Disable explicit NDK version to avoid license issues
- Comment out ndkVersion specification in app/build.gradle.kts
- Allows build to proceed without requiring NDK license acceptance
- NDK will be automatically selected by Android Gradle Plugin if needed
2025-10-03 11:06:03 +00:00
factory-droid[bot]
94b001e782 Update Kotlin version to 2.1.0 for compatibility
- Fixes Kotlin metadata version incompatibility errors
- Updates org.jetbrains.kotlin.android from 1.9.24 to 2.1.0
- Resolves compilation errors with kotlin-stdlib 2.2.0

This addresses the build failure where Kotlin classes were compiled
with metadata version 2.2.0 but compiler version 1.9.0 could only
read up to version 2.0.0.
2025-10-03 11:03:59 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ plugins {
android { android {
namespace = "com.neo.neomovies_mobile" namespace = "com.neo.neomovies_mobile"
compileSdk = flutter.compileSdkVersion compileSdk = flutter.compileSdkVersion
ndkVersion = "27.0.12077973" // ndkVersion = "27.0.12077973" // Commented out to avoid license issues
compileOptions { compileOptions {
sourceCompatibility = JavaVersion.VERSION_17 sourceCompatibility = JavaVersion.VERSION_17

View File

@@ -28,7 +28,7 @@ plugins {
id("dev.flutter.flutter-plugin-loader") version "1.0.0" id("dev.flutter.flutter-plugin-loader") version "1.0.0"
id("com.android.application") version "8.7.3" apply false id("com.android.application") version "8.7.3" apply false
id("com.android.library") version "8.7.3" apply false id("com.android.library") version "8.7.3" apply false
id("org.jetbrains.kotlin.android") version "1.9.24" apply false id("org.jetbrains.kotlin.android") version "2.1.0" apply false
} }
include(":app") include(":app")