forked from yanzhenjie/SwipeRecyclerView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
22 lines (19 loc) · 790 Bytes
/
Copy pathbuild.gradle
File metadata and controls
22 lines (19 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
apply plugin: rootProject.ext.plugins.application
android {
compileSdkVersion rootProject.ext.android.compileSdkVersion
buildToolsVersion rootProject.ext.android.buildToolsVersion
defaultConfig {
applicationId rootProject.ext.android.applicationId
minSdkVersion rootProject.ext.android.minSdkVersion
targetSdkVersion rootProject.ext.android.targetSdkVersion
versionCode rootProject.ext.android.versionCode
versionName rootProject.ext.android.versionName
}
}
dependencies {
compile rootProject.ext.dependencies.swipeRecyclerView
compile rootProject.ext.dependencies.design
compile rootProject.ext.dependencies.appCompat
compile rootProject.ext.dependencies.cardView
compile rootProject.ext.dependencies.loading
}