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' }