diff options
author | Joe Robinson <joe@lc8n.com> | 2015-12-15 20:43:45 +0000 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2015-12-15 20:43:45 +0000 |
commit | 30d164851ac3d4e7397e010baa24a8e5cb0dc090 (patch) | |
tree | fcb45696618d4588fb4fcd052db2c217e587d82e /app/build.gradle | |
parent | eb7c5e7d7b332fb488658bb84066b0b3c516896e (diff) |
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 36 |
1 files changed, 36 insertions, 0 deletions
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' + + +} |