Files
love-android/app/build.gradle
T
Miku AuahDark b367b3733d Release 11.4
2022-01-05 00:48:12 +08:00

46 lines
1023 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 31
buildToolsVersion '31.0.0'
ndkVersion '21.3.6528147'
defaultConfig {
applicationId 'org.love2d.android'
versionCode 30
versionName '11.4'
minSdkVersion 16
targetSdkVersion 31
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
flavorDimensions 'mode', 'recording'
productFlavors {
normal {
dimension 'mode'
}
embed {
dimension 'mode'
}
record {
dimension 'recording'
}
noRecord {
dimension 'recording'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
api 'androidx.multidex:multidex:2.0.1'
api fileTree(dir: 'libs', include: ['*.jar'])
api 'androidx.appcompat:appcompat:1.4.0'
api project(':love')
}