From 5008b980d193bc1e5c228d673a660bba38532cec Mon Sep 17 00:00:00 2001 From: str4d Date: Fri, 13 Jun 2014 01:28:36 +0000 Subject: [PATCH] Gradle build and settings files, updated ignores --- .mtn-ignore | 11 +++++++++++ Bote/build.gradle | 26 ++++++++++++++++++++++++++ build.gradle | 14 ++++++++++++++ settings.gradle | 1 + 4 files changed, 52 insertions(+) create mode 100644 Bote/build.gradle create mode 100644 build.gradle create mode 100644 settings.gradle diff --git a/.mtn-ignore b/.mtn-ignore index e2ad7c0..68000b0 100644 --- a/.mtn-ignore +++ b/.mtn-ignore @@ -9,3 +9,14 @@ ^botejars/lib lint.xml local.properties + +#IntelliJ IDEA +^.idea +.*.iml +.*.ipr +.*.iws +out + +#Gradle +^.gradle +build diff --git a/Bote/build.gradle b/Bote/build.gradle new file mode 100644 index 0000000..bbe7dd9 --- /dev/null +++ b/Bote/build.gradle @@ -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') +} diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..06084bc --- /dev/null +++ b/build.gradle @@ -0,0 +1,14 @@ +buildscript { + repositories { + mavenCentral() + } + dependencies { + classpath 'com.android.tools.build:gradle:0.9.+' + } +} + +allprojects { + repositories { + mavenCentral() + } +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..4bfd13b --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +include ':Bote'