aboutsummaryrefslogtreecommitdiffstats
path: root/libs/openpgp-api-lib/build.gradle
diff options
context:
space:
mode:
authorsteckbrief <steckbrief@chefmail.de>2016-02-11 21:20:06 +0100
committersteckbrief <steckbrief@chefmail.de>2016-02-11 21:20:06 +0100
commitf7abd4237f0b8441fcba45459e26b8a0ea1d36de (patch)
treece5285af2d2bf7172d70bf83060786f9b815dbaf /libs/openpgp-api-lib/build.gradle
parent3824eb172ba9a4a6b9ea84b0d1045591bc4fa0e3 (diff)
Fixed third party library references in gradle
Diffstat (limited to '')
-rw-r--r--libs/openpgp-api-lib/build.gradle35
1 files changed, 0 insertions, 35 deletions
diff --git a/libs/openpgp-api-lib/build.gradle b/libs/openpgp-api-lib/build.gradle
deleted file mode 100644
index a991cf26..00000000
--- a/libs/openpgp-api-lib/build.gradle
+++ /dev/null
@@ -1,35 +0,0 @@
-// please leave this here, so this library builds on its own
-buildscript {
- repositories {
- mavenCentral()
- }
-
- dependencies {
- classpath 'com.android.tools.build:gradle:1.2.3'
- }
-}
-
-apply plugin: 'android-library'
-
-android {
- compileSdkVersion 19
- buildToolsVersion '19.1'
-
- // NOTE: We are using the old folder structure to also support Eclipse
- sourceSets {
- main {
- manifest.srcFile 'AndroidManifest.xml'
- java.srcDirs = ['src']
- resources.srcDirs = ['src']
- aidl.srcDirs = ['src']
- renderscript.srcDirs = ['src']
- res.srcDirs = ['res']
- assets.srcDirs = ['assets']
- }
- }
-
- // Do not abort build if lint finds errors
- lintOptions {
- abortOnError false
- }
-}