Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: adblock-android-webview/build.gradle

Issue 29782630: Issue 6000 - Rename "libadblockplus-android" (Closed)
Patch Set: Created May 15, 2018, 9:30 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: adblock-android-webview/build.gradle
===================================================================
rename from libadblockplus-android-webview/build.gradle
rename to adblock-android-webview/build.gradle
--- a/libadblockplus-android-webview/build.gradle
+++ b/adblock-android-webview/build.gradle
@@ -2,33 +2,33 @@
android {
compileSdkVersion 21
buildToolsVersion "25.0.0"
defaultConfig {
minSdkVersion 21
targetSdkVersion 21
- versionCode 5
- versionName "2.2"
+ versionCode 6
+ versionName "2.3"
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
jni {
dependencies {
- project(path: ":libadblockplus-android", configuration: getAbiFlavor() + "Debug")
+ project(path: ":adblock-android", configuration: getAbiFlavor() + "Debug")
}
}
}
}
}
dependencies {
- debugCompile project("path": ':libadblockplus-android', "configuration": getAbiFlavor() + "Debug")
- releaseCompile project("path": ':libadblockplus-android', "configuration": getAbiFlavor() + "Release")
-}
+ debugCompile project("path": ':adblock-android', "configuration": getAbiFlavor() + "Debug")
+ releaseCompile project("path": ':adblock-android', "configuration": getAbiFlavor() + "Release")
+}

Powered by Google App Engine
This is Rietveld