revanced-manager/android/app/build.gradle

101 lines
2.6 KiB
Groovy
Raw Normal View History

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 flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
2023-10-28 16:19:07 +02:00
compileSdk 34
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 {
shrinkResources false
minifyEnabled false
resValue "string", "app_name", "ReVanced Manager"
2022-07-30 21:09:59 +02:00
signingConfig signingConfigs.debug
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
}
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'
}
}
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:$kotlin_version"
2022-08-06 15:04:18 +02:00
// ReVanced
implementation "app.revanced:revanced-patcher:19.0.0"
// Signing & aligning
implementation("org.bouncycastle:bcpkix-jdk15on:1.70")
2022-09-14 23:16:33 +02:00
implementation("com.android.tools.build:apksig:7.2.2")
2022-07-30 21:09:59 +02:00
}