From 30d164851ac3d4e7397e010baa24a8e5cb0dc090 Mon Sep 17 00:00:00 2001 From: Joe Robinson Date: Tue, 15 Dec 2015 20:43:45 +0000 Subject: Migrate to IntelliJ format, also contains some minor logging changes and moved libraries --- app/build.gradle | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 app/build.gradle (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..7934dbe --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,36 @@ +apply plugin: 'com.android.application' + +android { + useLibrary 'org.apache.http.legacy' + compileSdkVersion 21 + buildToolsVersion "20.0.0" + + defaultConfig { + applicationId "com.lc8n.blauploader" + minSdkVersion 8 + targetSdkVersion 14 + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_5 + targetCompatibility JavaVersion.VERSION_1_5 + } + } + + packagingOptions { + exclude 'META-INF/NOTICE.txt' // will not include NOTICE file + exclude 'META-INF/LICENSE.txt' // will not include LICENSE file + } + + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' + } + } +} + +dependencies { + compile 'org.apache.httpcomponents:httpmime:4.2.3' + + +} -- cgit v1.2.3