forked from siyamed/android-shape-imageview
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
30 lines (27 loc) · 859 Bytes
/
build.gradle
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
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.github.siyamed.shapeimageview.sample"
minSdkVersion 9
targetSdkVersion 19
versionCode 3
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
// compile project(':library')
compile 'com.github.siyamed:android-shape-imageview:0.9.2@aar'
compile 'com.android.support:appcompat-v7:20.0.0'
compile 'com.squareup.picasso:picasso:2.3.3'
compile 'com.android.support:gridlayout-v7:20.0.0'
compile 'com.android.support:support-v4:20.0.0'
compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
}