mirror of
https://github.com/LSPosed/DisableFlagSecure.git
synced 2025-05-04 22:43:25 +08:00
20 lines
351 B
Groovy
20 lines
351 B
Groovy
|
plugins {
|
||
|
id 'com.android.library'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace 'io.github.libxposed'
|
||
|
compileSdk 34
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk 24
|
||
|
targetSdk 34
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_17
|
||
|
targetCompatibility JavaVersion.VERSION_17
|
||
|
}
|
||
|
}
|