Initial files for gradle build.

This commit is contained in:
Henrique Gemignani Passos Lima
2017-02-19 10:27:00 -03:00
parent 35cd9f1900
commit 803786eee9
24 changed files with 344 additions and 45 deletions
+26
View File
@@ -0,0 +1,26 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "org.love2d.android"
versionCode = 22
versionName "0.10.2"
minSdkVersion 10
targetSdkVersion 18
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.android.support:multidex:1.0.1'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.0.0'
compile project(':love')
}