aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authoriNPUTmice <daniel@gultsch.de>2014-11-03 19:56:38 +0100
committeriNPUTmice <daniel@gultsch.de>2014-11-03 19:56:38 +0100
commit21069003b05b984cfe67f9f6f8479c97a803e3da (patch)
tree3e9a004b50effa89c77451aa5bfb30df5950e73c /build.gradle
parent3e05ef77b191018ad8d9298429ed412af1d8ca3e (diff)
disabled proguard. fixed gradle libs
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 3 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle
index fd5805e8..a37b92c4 100644
--- a/build.gradle
+++ b/build.gradle
@@ -28,13 +28,12 @@ repositories {
}
dependencies {
- compile project(':libs/minidns')
- compile project(':libs/openpgp-api-lib')
- compile project(':libs/MemorizingTrustManager')
+ compile project(':libs:minidns')
+ compile project(':libs:openpgp-api-lib')
+ compile project(':libs:MemorizingTrustManager')
compile 'com.android.support:support-v13:19.1.0'
compile 'org.bouncycastle:bcprov-jdk15on:1.50'
compile 'net.java:otr4j:0.21'
- compile fileTree(dir: 'libs', include: ['*.jar'])
}
android {
@@ -80,10 +79,6 @@ android {
}
buildTypes {
- release {
- runProguard true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
applicationVariants.all { variant ->
def fileName = variant.packageApplication.outputFile.name.replace(".apk",
"-" + defaultConfig.versionName + ".apk")