mirror of
https://github.com/QM4RS/FridaBox.git
synced 2026-09-18 23:22:22 +02:00
22 lines
504 B
Groovy
22 lines
504 B
Groovy
plugins {
|
|
alias(libs.plugins.android.application)
|
|
}
|
|
|
|
android {
|
|
namespace "com.qm4rs.fridabox.sample"
|
|
compileSdk rootProject.ext.compileSdkVersion
|
|
|
|
defaultConfig {
|
|
applicationId "com.qm4rs.fridabox.sample"
|
|
minSdk rootProject.ext.minSdk
|
|
targetSdk rootProject.ext.targetSdkVersion
|
|
versionCode 2
|
|
versionName "1.1"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_21
|
|
targetCompatibility JavaVersion.VERSION_21
|
|
}
|
|
}
|