plugins { id 'com.android.application' id 'com.google.devtools.ksp' id 'kotlin-android' id 'kotlin-kapt' id 'dev.flutter.flutter-gradle-plugin' } def packageName = "deckers.thibault.aves" // Keys def keystoreProperties = new Properties() def keystorePropertiesFile = rootProject.file('key.properties') if (keystorePropertiesFile.exists()) { // for release using credentials stored in a local file keystorePropertiesFile.withReader('UTF-8') { reader -> keystoreProperties.load(reader) } } else { // for release using credentials in environment variables set up by GitHub Actions // warning: in property file, single quotes should be escaped with a backslash // but they should not be escaped when stored in env variables keystoreProperties["storeFile"] = System.getenv("AVES_STORE_FILE") ?: "" keystoreProperties["storePassword"] = System.getenv("AVES_STORE_PASSWORD") ?: "" keystoreProperties["keyAlias"] = System.getenv("AVES_KEY_ALIAS") ?: "" keystoreProperties["keyPassword"] = System.getenv("AVES_KEY_PASSWORD") ?: "" keystoreProperties["googleApiKey"] = System.getenv("AVES_GOOGLE_API_KEY") ?: "" } kotlin { jvmToolchain 17 } android { namespace 'deckers.thibault.aves' compileSdk 35 defaultConfig { applicationId packageName minSdk flutter.minSdkVersion targetSdk 35 versionCode flutter.versionCode versionName flutter.versionName manifestPlaceholders = [googleApiKey: keystoreProperties["googleApiKey"] ?: ""] multiDexEnabled true } signingConfigs { release { keyAlias keystoreProperties["keyAlias"] keyPassword keystoreProperties["keyPassword"] storeFile keystoreProperties["storeFile"] ? file(keystoreProperties["storeFile"]) : null storePassword keystoreProperties["storePassword"] } } flavorDimensions = ["store"] productFlavors { play { // Google Play dimension "store" // generate a universal APK without x86 native libs ext.useNdkAbiFilters = true } izzy { // IzzyOnDroid // check offending libraries with `scanapk` // cf https://android.izzysoft.de/articles/named/app-modules-2 dimension "store" // generate APK by ABI, but NDK ABI filters are incompatible with split APK generation ext.useNdkAbiFilters = false } libre { // F-Droid // check offending libraries with `fdroidserver` // cf https://f-droid.org/en/docs/Submitting_to_F-Droid_Quick_Start_Guide/ dimension "store" // generate APK by ABI, but NDK ABI filters are incompatible with split APK generation ext.useNdkAbiFilters = false applicationIdSuffix ".libre" } } buildTypes { debug { applicationIdSuffix ".debug" } profile { applicationIdSuffix ".profile" } release { signingConfig signingConfigs.release minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } applicationVariants.all { variant -> variant.resValue 'string', 'screen_saver_settings_activity', "${applicationId}/${packageName}.ScreenSaverSettingsActivity" variant.resValue 'string', 'search_provider', "${applicationId}.search_provider" variant.outputs.each { output -> def baseAbiVersionCode = rootProject.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI)) if (baseAbiVersionCode != null) { output.versionCodeOverride = variant.versionCode * 100 + baseAbiVersionCode } } } android.productFlavors.each { flavor -> def tasks = gradle.startParameter.taskNames.toString().toLowerCase() if (tasks.contains(flavor.name) && flavor.ext.useNdkAbiFilters) { release { // specify architectures, to specifically exclude native libs for x86, // which lead to: UnsatisfiedLinkError...couldn't find "libflutter.so" // cf https://github.com/flutter/flutter/issues/37566#issuecomment-640879500 ndk { //noinspection ChromeOsAbiSupport abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64' } } } } } } flutter { source '../..' } repositories { maven { url = 'https://jitpack.io' content { includeGroup "com.github.deckerst" includeGroup "com.github.deckerst.mp4parser" } } maven { url = 'https://s3.amazonaws.com/repo.commonsware.com' content { excludeGroupByRegex "com\\.github\\.deckerst.*" } } } dependencies { implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1' implementation "androidx.appcompat:appcompat:1.7.0" implementation 'androidx.core:core-ktx:1.16.0' implementation 'androidx.lifecycle:lifecycle-process:2.9.0' implementation 'androidx.media:media:1.7.0' implementation 'androidx.multidex:multidex:2.0.1' implementation 'androidx.security:security-crypto:1.1.0-alpha07' implementation 'androidx.work:work-runtime-ktx:2.10.1' implementation 'com.commonsware.cwac:document:0.5.0' implementation 'com.drewnoakes:metadata-extractor:2.19.0' implementation "com.github.bumptech.glide:glide:$glide_version" implementation 'com.google.android.material:material:1.12.0' // SLF4J implementation for `mp4parser` implementation 'org.slf4j:slf4j-simple:2.0.16' // forked, built by JitPack: // - https://jitpack.io/p/deckerst/Android-TiffBitmapFactory // - https://jitpack.io/p/deckerst/androidsvg // - https://jitpack.io/p/deckerst/mp4parser // - https://jitpack.io/p/deckerst/pixymeta-android implementation 'com.github.deckerst:Android-TiffBitmapFactory:d6b2b0aa4f' implementation 'com.github.deckerst:androidsvg:67db933051' implementation 'com.github.deckerst.mp4parser:isoparser:c2898f1832' implementation 'com.github.deckerst.mp4parser:muxer:c2898f1832' implementation 'com.github.deckerst:pixymeta-android:cb1cdc932e' implementation project(':exifinterface') testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.11.4' kapt 'androidx.annotation:annotation:1.9.1' ksp "com.github.bumptech.glide:ksp:$glide_version" compileOnly rootProject.findProject(':streams_channel') } if (useCrashlytics) { println("Building flavor with Crashlytics plugin") apply plugin: 'com.google.gms.google-services' apply plugin: 'com.google.firebase.crashlytics' }