-
Notifications
You must be signed in to change notification settings - Fork 17
/
build.gradle
59 lines (52 loc) · 1.47 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'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
}
}
allprojects {
repositories {
jcenter()
}
repositories {
maven {
url "https://mint.splunk.com/gradle/"
}
}
}
android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc2"
compileOptions.encoding = "windows-1254"
defaultConfig {
applicationId "com.turkcell.gelecegiyazanlar"
minSdkVersion 15
targetSdkVersion 22
versionCode 2
versionName "1.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'eu.the4thfloor.volley:com.android.volley:2015.05.28'
compile 'de.hdodenhof:circleimageview:1.3.0'
compile 'com.android.support:cardview-v7:22.2.0'
compile files('libs/activation.jar')
compile files('libs/additionnal.jar')
compile 'com.getbase:floatingactionbutton:1.10.0'
compile 'com.android.support:design:22.2.0'
compile files('libs/curiosdk.jar')
compile 'com.google.android.gms:play-services:7.8.0'
compile 'com.splunk.mint:mint:4.4.0'
}