aboutsummaryrefslogtreecommitdiff
path: root/fastadapter-viewbinding/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'fastadapter-viewbinding/build.gradle')
-rw-r--r--fastadapter-viewbinding/build.gradle24
1 files changed, 24 insertions, 0 deletions
diff --git a/fastadapter-viewbinding/build.gradle b/fastadapter-viewbinding/build.gradle
new file mode 100644
index 0000000..d9de6d5
--- /dev/null
+++ b/fastadapter-viewbinding/build.gradle
@@ -0,0 +1,24 @@
+import kau.Dependencies
+import kau.Versions
+
+ext.kauSubModuleMinSdk = Versions.coreMinSdk
+
+apply from: '../android-lib.gradle'
+
+android {
+ dataBinding {
+ enabled = true
+ }
+ viewBinding {
+ enabled = true
+ }
+}
+
+dependencies {
+ implementation project(':core')
+
+ api Dependencies.fastAdapter
+ api Dependencies.fastAdapter("utils")
+}
+
+apply from: '../artifacts.gradle'