DisableFlagSecure/app/build.gradle

34 lines
730 B
Groovy
Raw Normal View History

2021-02-03 16:36:24 +08:00
plugins {
id 'com.android.application'
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "io.github.lsposed.disableflagsecure"
minSdkVersion 21
targetSdkVersion 30
2021-02-03 17:14:57 +08:00
versionCode 2
versionName "1.0.1"
2021-02-03 16:36:24 +08:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
2021-02-03 17:14:57 +08:00
2021-02-03 16:36:24 +08:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2021-02-03 17:14:57 +08:00
dependenciesInfo.includeInApk false
2021-02-03 16:36:24 +08:00
}
dependencies {
compileOnly 'de.robv.android.xposed:api:82'
}