summaryrefslogtreecommitdiff
path: root/library/rules.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'library/rules.gradle')
-rw-r--r--library/rules.gradle10
1 files changed, 7 insertions, 3 deletions
diff --git a/library/rules.gradle b/library/rules.gradle
index 6b0acce..f5face8 100644
--- a/library/rules.gradle
+++ b/library/rules.gradle
@@ -21,9 +21,12 @@ android {
res.srcDirs = ['main/res']
}
+ flavorDimensions 'compat'
+
productFlavors {
// Platform version that will not include the compatibility libraries
platform {
+ dimension 'compat'
minSdkVersion 23
dependencies {
@@ -43,16 +46,17 @@ android {
// deps = ['project-name': 'com.example.group:project-name:1.0.0']
// }
//
- platformCompile deps['support-annotations']
+ platformImplementation deps['support-annotations']
}
}
// Provides backwards compatibility for Gingerbread or above, using support libraries.
gingerbreadCompat {
+ dimension 'compat'
minSdkVersion 9
dependencies {
- gingerbreadCompatCompile deps['support-appcompat-v7']
- gingerbreadCompatCompile deps['support-recyclerview-v7']
+ gingerbreadCompatImplementation deps['support-appcompat-v7']
+ gingerbreadCompatImplementation deps['support-recyclerview-v7']
}
}
}