-
Notifications
You must be signed in to change notification settings - Fork 467
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (28 loc) · 976 Bytes
/
Copy pathbuild.gradle
File metadata and controls
31 lines (28 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.mxn.soul.flowingdrawer"
minSdkVersion 11
targetSdkVersion 26
versionCode 120
versionName "1.2.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:22.2.0'
implementation 'com.android.support:recyclerview-v7:22.+'
implementation 'com.android.support:design:22.2.1'
implementation 'com.squareup.picasso:picasso:2.5.0'
implementation 'com.android.support:cardview-v7:22.+'
implementation 'com.nineoldandroids:library:2.4.0'
implementation 'com.mxn.soul:flowingdrawer-core:2.1.0'
// implementation project(':flowingdrawer-core')
}