blob: ff4bf83cf6ad4e6aa9ddfeb5b5287e4454d89713 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
dependencies {
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation "androidx.viewpager2:viewpager2:$viewPager2Version"
implementation "com.google.android.material:material:$googleMaterialVersion"
}
|