plugins { id "com.android.application" id "kotlin-android" id "dev.flutter.flutter-gradle-plugin" } def localProperties = new Properties() def localPropertiesFile = rootProject.file('local.properties') if (localPropertiesFile.exists()) { localPropertiesFile.withReader('UTF-8') { reader -> localProperties.load(reader) } } def flutterVersionCode = localProperties.getProperty('flutter.versionCode') if (flutterVersionCode == null) { flutterVersionCode = '1' } def flutterVersionName = localProperties.getProperty('flutter.versionName') if (flutterVersionName == null) { flutterVersionName = '1.0' } android { compileSdk 34 compileOptions { coreLibraryDesugaringEnabled true sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = '17' } sourceSets { main.java.srcDirs += 'src/main/kotlin' } defaultConfig { applicationId "app.revanced.manager.flutter" minSdk 26 targetSdk 34 versionCode flutterVersionCode.toInteger() versionName flutterVersionName } buildTypes { configureEach { shrinkResources = false minifyEnabled = false signingConfig signingConfigs.debug ndk { abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64' } } release { shrinkResources true minifyEnabled true if (System.getenv("signingKey") != null) { signingConfigs { create("release") { storeFile = file(System.getenv("signingKey")) storePassword = System.getenv("keyStorePassword") keyAlias = System.getenv("keyAlias") keyPassword = System.getenv("keyPassword") } } signingConfig = signingConfigs.release resValue "string", "app_name", "ReVanced Manager" applicationVariants.all { variant -> variant.outputs.all { outputFileName = "revanced-manager-v${flutterVersionName}.apk" } } } else { signingConfig = signingConfigs.debug resValue "string", "app_name", "ReVanced Manager (Debug)" applicationIdSuffix ".debug" } } debug { resValue "string", "app_name", "ReVanced Manager (Debug)" applicationIdSuffix ".debug" } profile { resValue "string", "app_name", "ReVanced Manager (Profile)" applicationIdSuffix ".profile" } } packagingOptions { jniLibs { useLegacyPackaging true excludes += ['/prebuilt/**'] } resources { excludes += ['/prebuilt/**'] } } namespace 'app.revanced.manager.flutter' } kotlin { jvmToolchain(17) } flutter { source '../..' } dependencies { coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4") // https://pub.dev/packages/flutter_local_notifications#gradle-setup implementation("app.revanced:revanced-patcher:19.3.1") implementation("app.revanced:revanced-library:2.2.1") }