revanced-manager/android/app/build.gradle

80 lines
2.0 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 {
2022-08-18 16:33:33 +02:00
compileSdkVersion 33
2022-07-30 21:09:59 +02:00
ndkVersion flutter.ndkVersion
compileOptions {
2022-08-19 20:13:43 +02:00
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
2022-07-30 21:09:59 +02:00
}
kotlinOptions {
2022-08-19 20:13:43 +02:00
jvmTarget = '11'
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"
2022-09-17 09:12:57 +02:00
minSdkVersion 26
2022-08-18 16:33:33 +02:00
targetSdkVersion 33
2022-07-30 21:09:59 +02:00
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
shrinkResources false
minifyEnabled false
2022-07-30 21:09:59 +02:00
signingConfig signingConfigs.debug
}
}
packagingOptions {
exclude '/prebuilt/**'
}
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:5.1.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
}