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

Unified Diff: libadblockplus-android-settings/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 | « build.gradle ('k') | libadblockplus-android-tests/build.gradle » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libadblockplus-android-settings/build.gradle
diff --git a/libadblockplus-android-settings/build.gradle b/libadblockplus-android-settings/build.gradle
index 6a50134b7335a3cdcf8923fb43825d92d3ab979e..62adb3c9fd0b54f4e681be0ffaa6abc2f7b744a9 100644
--- a/libadblockplus-android-settings/build.gradle
+++ b/libadblockplus-android-settings/build.gradle
@@ -21,16 +21,15 @@ android {
jni {
dependencies {
- project ":libadblockplus-android"
+ project(path: ":libadblockplus-android", configuration: getAbiFlavor() + "Debug")
}
}
}
}
}
-
-
dependencies {
- compile project(':libadblockplus-android')
+ debugCompile project("path": ':libadblockplus-android', "configuration": getAbiFlavor() + "Debug")
+ releaseCompile project("path": ':libadblockplus-android', "configuration": getAbiFlavor() + "Release")
compile 'com.android.support:support-v4:21.0.3'
}
« no previous file with comments | « build.gradle ('k') | libadblockplus-android-tests/build.gradle » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld