-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (51 loc) · 1.68 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
applicationId "com.insa.burnd"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
flatDir {
dirs 'libs'
}
maven {
url "https://jitpack.io"
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
// Google stuff.
compile 'com.android.support:design:22.2.1'
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.android.support:cardview-v7:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'
compile 'com.google.code.gson:gson:2.3.1'
// Additionnal libraries
// Local
compile(name: 'materialish-progress-1.4', ext: 'aar') // progress dialog in Splash Screen
compile(name: 'support-v4-preferencefragment-1.0.0', ext: 'aar') // PreferenceFragment compatible with support library
// External
compile 'com.getbase:floatingactionbutton:1.8.0' // Floating action button w/ menus
compile 'com.facebook.android:facebook-android-sdk:3.23.0' // Facebook sdk
compile 'com.mcxiaoke.volley:library:1.0.17' // Volley Library (handles all network request)
compile 'com.github.paolorotolo:appintro:2.0.0'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'nl.qbusict:cupboard:2.1.2'
compile 'co.trikita:log:1.1.1'
}