Gradle build and settings files, updated ignores

This commit is contained in:
str4d
2014-06-13 01:28:36 +00:00
parent 55cd3d58d0
commit 5008b980d1
4 changed files with 52 additions and 0 deletions

View File

@@ -9,3 +9,14 @@
^botejars/lib ^botejars/lib
lint.xml lint.xml
local.properties local.properties
#IntelliJ IDEA
^.idea
.*.iml
.*.ipr
.*.iws
out
#Gradle
^.gradle
build

26
Bote/build.gradle Normal file
View File

@@ -0,0 +1,26 @@
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'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:+'
compile files('libs/mail.jar')
compile files('libs/additionnal.jar')
compile files('libs/activation.jar')
compile files('libs/tokenautocomplete.jar')
}

14
build.gradle Normal file
View File

@@ -0,0 +1,14 @@
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
}
allprojects {
repositories {
mavenCentral()
}
}

1
settings.gradle Normal file
View File

@@ -0,0 +1 @@
include ':Bote'