-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (29 loc) · 985 Bytes
/
build.gradle
File metadata and controls
33 lines (29 loc) · 985 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
32
33
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "net.aloogle.dropandoideias"
minSdkVersion 14
targetSdkVersion 21
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile 'com.android.support:support-v4:23.0.1'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:design:22.2.0'
compile 'com.github.chrisbanes.photoview:library:1.2.3'
compile 'com.koushikdutta.ion:ion:2.+'
compile 'com.github.ksoichiro:android-observablescrollview:+'
compile 'jp.wasabeef:recyclerview-animators:1.2.2'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.github.rey5137:material:1.2.1'
compile files('libs/nineoldandroids-2.4.0.jar')
compile files('libs/Parse-1.4.3.jar')
}