FuckMaoNemo/app/build.gradle

50 lines
932 B
Groovy
Raw Permalink Normal View History

2024-06-07 04:33:59 +00:00
plugins {
id 'com.android.application'
}
android {
namespace 'io.github.moonleeeaf.fuckmaonemo'
compileSdk 34
defaultConfig {
applicationId "io.github.moonleeeaf.fuckmaonemo"
minSdk 21
targetSdk 33
2024-06-09 04:51:13 +00:00
versionCode 12100
versionName "1.2.1"
2024-06-07 04:33:59 +00:00
vectorDrawables {
useSupportLibrary true
}
}
packagingOptions {
jniLibs {
useLegacyPackaging true
}
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
buildFeatures {
viewBinding false
}
}
dependencies {
compileOnly 'de.robv.android.xposed:api:82'
}