DisableFlagSecure/app/build.gradle

39 lines
794 B
Groovy
Raw Normal View History

2021-02-03 16:36:24 +08:00
plugins {
id 'com.android.application'
}
android {
2023-08-16 00:27:51 +08:00
compileSdk 34
2021-02-03 16:36:24 +08:00
defaultConfig {
applicationId "io.github.lsposed.disableflagsecure"
2023-02-14 11:19:17 +08:00
minSdkVersion 24
2023-08-16 00:27:51 +08:00
targetSdkVersion 34
2023-02-14 11:21:35 +08:00
versionCode 3
versionName "2.0.0"
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 {
2023-02-14 11:19:17 +08:00
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
lint {
checkReleaseBuilds false
2021-02-03 16:36:24 +08:00
}
2021-02-03 17:14:57 +08:00
dependenciesInfo.includeInApk false
2023-08-16 00:27:51 +08:00
namespace 'io.github.lsposed.disableflagsecure'
2021-02-03 16:36:24 +08:00
}
dependencies {
compileOnly 'de.robv.android.xposed:api:82'
2023-02-14 11:19:17 +08:00
}