Fixed build process

This commit is contained in:
str4d
2014-06-13 10:28:25 +00:00
parent 5008b980d1
commit 0d6e1bd1db
146 changed files with 20 additions and 301 deletions

27
app/build.gradle Normal file
View File

@@ -0,0 +1,27 @@
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
defaultConfig {
minSdkVersion 9
targetSdkVersion 19
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
ant.importBuild('botejars.xml')
preBuild.dependsOn precompile
clean.dependsOn preclean
dependencies {
compile 'com.android.support:appcompat-v7:+'
compile fileTree(dir: 'libs', include: '*.jar')
}