Index: adblockplussbrowser/build.gradle |
=================================================================== |
--- a/adblockplussbrowser/build.gradle |
+++ b/adblockplussbrowser/build.gradle |
@@ -1,8 +1,9 @@ |
+ |
anton
2017/07/06 06:51:10
this change (new line) is not required
|
apply plugin: 'com.android.application' |
android { |
compileSdkVersion rootProject.ext.compileSdkVersion |
buildToolsVersion rootProject.ext.buildToolsVersion |
compileOptions { |
sourceCompatibility = rootProject.ext.sourceCompatibilityVersion |
@@ -23,19 +24,22 @@ android { |
java.srcDirs = ['src'] |
res.srcDirs = ['res'] |
} |
} |
buildTypes { |
release { |
minifyEnabled true |
- proguardFiles getDefaultProguardFile('proguard-android.txt') |
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
lintOptions { |
disable 'MissingTranslation' |
} |
} |
} |
} |
dependencies { |
compile "com.android.support:support-v4:$rootProject.ext.androidSupportLibraryVersion" |
+ compile (group: 'commons-validator', name: 'commons-validator', version: '1.6') { |
anton
2017/07/06 06:51:10
should we really use the whole Apache commons modu
jens
2017/07/06 08:49:06
I think it's okay to use commons validator, as the
diegocarloslima
2017/07/06 18:25:16
IHMO, for this project, we don't have a high size
anton
2017/07/07 13:03:19
okay, let's just revert adding new empty lines and
|
+ exclude group: 'commons-logging', module: 'commons-logging' |
+ } |
} |