Files
2026-04-05 01:00:07 -05:00

35 lines
640 B
Groovy

plugins {
id 'com.android.application'
}
android {
namespace 'com.lerist.fakelocation.common.xposed'
compileSdk 36
defaultConfig {
applicationId "com.lerist.fakelocation.common.xposed"
minSdk 26
targetSdk 34
versionCode 6
versionName "1.5"
}
buildTypes {
release {
minifyEnabled false
}
debug {
debuggable true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
compileOnly files('../app/libs/api-82.jar')
}