DisableFlagSecure/app/build.gradle
2023-02-14 11:21:35 +08:00

39 lines
780 B
Groovy

plugins {
id 'com.android.application'
}
android {
compileSdkVersion 33
buildToolsVersion "33.0.1"
defaultConfig {
applicationId "io.github.lsposed.disableflagsecure"
minSdkVersion 24
targetSdkVersion 33
versionCode 3
versionName "2.0.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
lint {
checkReleaseBuilds false
}
dependenciesInfo.includeInApk false
}
dependencies {
compileOnly 'de.robv.android.xposed:api:82'
}