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

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

Issue 29649555: Issue 6219 - Create flavors per ABI (Closed)
Patch Set: Created Dec. 26, 2017, 2:19 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: libadblockplus-android-webview/build.gradle
diff --git a/libadblockplus-android-webview/build.gradle b/libadblockplus-android-webview/build.gradle
index 0f440eec5ba5bcea491f79e1acb4edc822283bfe..2d3bcf675e6352b255be87a351bcbcc3ed2aaa3d 100644
--- a/libadblockplus-android-webview/build.gradle
+++ b/libadblockplus-android-webview/build.gradle
@@ -21,7 +21,7 @@ android {
jni {
dependencies {
- project ":libadblockplus-android"
+ project(path: ":libadblockplus-android", configuration: getAbiFlavor() + "Debug")
}
}
}
@@ -29,5 +29,6 @@ android {
}
dependencies {
- compile project(':libadblockplus-android')
+ debugCompile project("path": ':libadblockplus-android', "configuration": getAbiFlavor() + "Debug")
+ releaseCompile project("path": ':libadblockplus-android', "configuration": getAbiFlavor() + "Release")
}

Powered by Google App Engine
This is Rietveld