-
Notifications
You must be signed in to change notification settings - Fork 435
/
build.gradle
58 lines (49 loc) · 1.42 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
apply plugin: 'com.android.application'
apply plugin: 'com.github.triplet.play'
if (file('credentials.config').exists() ) {
apply from: 'credentials.config';
}
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId 'jp.forkhub'
minSdkVersion 19
targetSdkVersion 27
versionCode 1020900
versionName '1.2.9'
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
lintOptions {
abortOnError false
}
play {
track = 'beta'
uploadImages = true
}
}
repositories {
flatDir {
dirs 'libs'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:design:27.1.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.retrofit2:converter-moshi:2.3.0'
compile 'com.squareup.okhttp3:okhttp-urlconnection:3.9.1'
compile 'org.roboguice:roboguice:2.0'
compile 'com.google.code.gson:gson:2.7'
compile 'org.eclipse.mylyn.github:org.eclipse.egit.github.core:4.4.0.201606070830-r'
compile('com.google.inject.extensions:guice-assistedinject:3.0') {
exclude group: 'com.google.inject'
}
compile 'com.github.JakeWharton:ViewPagerIndicator:2.4.1'
//Self compiled .aar version of wishlist
compile(name: 'lib', ext: 'aar')
}