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'