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: renamed variable Created Jan. 9, 2018, 6:20 a.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
« no previous file with comments | « libadblockplus-android-tests/build.gradle ('k') | libadblockplus-android-webviewapp/build.gradle » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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")
}
« no previous file with comments | « libadblockplus-android-tests/build.gradle ('k') | libadblockplus-android-webviewapp/build.gradle » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld