revanced-manager/android/app/build.gradle

122 lines
3.5 KiB
Groovy
Raw Normal View History

plugins {
id "com.android.application"
id "kotlin-android"
id "dev.flutter.flutter-gradle-plugin"
}
2022-07-30 21:09:59 +02:00
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 {
2024-02-18 23:31:24 +01:00
compileSdk flutter.compileSdkVersion
2022-07-30 21:09:59 +02:00
ndkVersion flutter.ndkVersion
compileOptions {
2023-10-28 16:19:07 +02:00
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
2022-07-30 21:09:59 +02:00
}
kotlinOptions {
2023-10-28 16:19:07 +02:00
jvmTarget = '17'
2022-07-30 21:09:59 +02:00
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
2022-09-12 14:53:34 +02:00
applicationId "app.revanced.manager.flutter"
2023-10-28 16:19:07 +02:00
minSdk 26
targetSdk 34
2022-07-30 21:09:59 +02:00
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
}
2024-02-01 02:57:15 +01:00
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"
}
2022-07-30 21:09:59 +02:00
}
debug {
shrinkResources false
minifyEnabled false
resValue "string", "app_name", "ReVanced Manager Debug"
applicationIdSuffix ".debug"
signingConfig signingConfigs.debug
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
}
}
profile {
shrinkResources false
minifyEnabled false
resValue "string", "app_name", "ReVanced Manager Profile"
applicationIdSuffix ".profile"
signingConfig signingConfigs.debug
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
}
}
2022-07-30 21:09:59 +02:00
}
packagingOptions {
2023-10-28 16:19:07 +02:00
jniLibs {
useLegacyPackaging true
excludes += ['/prebuilt/**']
}
resources {
excludes += ['/prebuilt/**']
}
}
2023-10-28 16:19:07 +02:00
namespace 'app.revanced.manager.flutter'
}
kotlin {
jvmToolchain(17)
2022-07-30 21:09:59 +02:00
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.22"
2022-08-06 15:04:18 +02:00
// ReVanced
implementation "app.revanced:revanced-patcher:19.3.1"
implementation "app.revanced:revanced-library:2.0.0"
2022-07-30 21:09:59 +02:00
}