Gradle build and settings files, updated ignores
This commit is contained in:
11
.mtn-ignore
11
.mtn-ignore
@@ -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
26
Bote/build.gradle
Normal 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
14
build.gradle
Normal 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
1
settings.gradle
Normal file
@@ -0,0 +1 @@
|
|||||||
|
include ':Bote'
|
||||||
Reference in New Issue
Block a user