Files
love-android/app/build.gradle
T
Martin Felis 34e88d43ae merged
2018-12-07 17:57:07 +01:00

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()
}