- MainActivity movida de es.freetimelab.el_impostor → es.freetimelab.farolero - minSdk forzado a 24 (requerido por nearby_connections) - Iconos regenerados con PIL (AAPT-compatible) - Adaptive icon con foreground/background - Feature graphic actualizado - Refs a elimpostor limpiadas en servicio_nearby
39 lines
816 B
Kotlin
39 lines
816 B
Kotlin
plugins {
|
|
id("com.android.application")
|
|
id("kotlin-android")
|
|
id("dev.flutter.flutter-gradle-plugin")
|
|
}
|
|
|
|
android {
|
|
namespace = "es.freetimelab.farolero"
|
|
compileSdk = flutter.compileSdkVersion
|
|
ndkVersion = flutter.ndkVersion
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_17.toString()
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId = "es.freetimelab.farolero"
|
|
minSdk = 24
|
|
targetSdk = 34
|
|
versionCode = flutter.versionCode
|
|
versionName = flutter.versionName
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
signingConfig = signingConfigs.getByName("debug")
|
|
}
|
|
}
|
|
}
|
|
|
|
flutter {
|
|
source = "../.."
|
|
}
|