mirror of
https://github.com/love2d/love-android.git
synced 2026-08-12 08:31:04 +02:00
34 lines
729 B
Groovy
34 lines
729 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion "28.0.3"
|
|
defaultConfig {
|
|
applicationId "org.love2d.android"
|
|
versionCode 26
|
|
versionName "11.1"
|
|
minSdkVersion 14
|
|
targetSdkVersion 26
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api 'com.android.support:multidex:1.0.1'
|
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
|
api 'com.android.support:appcompat-v7:26.1.0'
|
|
api project(':love')
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
}
|