Files
FuckMaoNemo/app/build.gradle
MoonLeeeaf 59c457675d
Some checks failed
Android CI / build (push) Failing after 14m57s
feat: 最新作品过滤
2024-10-26 09:34:22 +08:00

50 lines
932 B
Groovy

plugins {
id 'com.android.application'
}
android {
namespace 'io.github.moonleeeaf.fuckmaonemo'
compileSdk 34
defaultConfig {
applicationId "io.github.moonleeeaf.fuckmaonemo"
minSdk 21
targetSdk 33
versionCode 17000
versionName "1.7.0"
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'
}