Index: adblockplussbrowser/build.gradle |
=================================================================== |
--- a/adblockplussbrowser/build.gradle |
+++ b/adblockplussbrowser/build.gradle |
@@ -1,9 +1,10 @@ |
apply plugin: 'com.android.application' |
+apply plugin: 'kotlin-android' |
android { |
compileSdkVersion rootProject.ext.compileSdkVersion |
buildToolsVersion rootProject.ext.buildToolsVersion |
compileOptions { |
sourceCompatibility = rootProject.ext.sourceCompatibilityVersion |
targetCompatibility = rootProject.ext.targetCompatibilityVersion |
@@ -48,13 +49,14 @@ def updateBundledLists() { |
i -> new File(rootProject.ext.easyListFilePath).withOutputStream { it << i } |
} |
new URL(rootProject.ext.exceptionRulesUpdateUrl).withInputStream { |
i -> new File(rootProject.ext.exceptionRulesFilePath).withOutputStream { it << i } |
} |
} |
dependencies { |
+ testCompile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" |
compile "com.android.support:support-v4:$rootProject.ext.androidSupportLibraryVersion" |
compile (group: 'commons-validator', name: 'commons-validator', version: '+') { |
exclude group: 'commons-logging', module: 'commons-logging' |
} |
} |