2013-12-27 13:27:58 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2015-11-29 01:53:16 +01:00
|
|
|
jcenter()
|
2017-11-15 00:19:12 +01:00
|
|
|
google()
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2017-12-21 12:51:47 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|
|
|
|
}
|
2014-11-19 01:18:42 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2013-12-27 13:27:58 +01:00
|
|
|
|
|
|
|
repositories {
|
2015-11-29 01:53:16 +01:00
|
|
|
jcenter()
|
2017-11-15 00:19:12 +01:00
|
|
|
google()
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2017-11-15 00:19:12 +01:00
|
|
|
compileSdkVersion 26
|
2013-12-27 13:27:58 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 14
|
2017-11-15 00:19:12 +01:00
|
|
|
targetSdkVersion 26
|
2013-12-27 13:27:58 +01:00
|
|
|
versionCode 1
|
2016-07-09 19:35:05 +02:00
|
|
|
versionName '1.0'
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|
2015-03-24 23:53:28 +01:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-05-26 22:22:13 +02:00
|
|
|
compile fileTree(dir: 'libs', include: '*.jar')
|
2017-11-15 00:19:12 +01:00
|
|
|
compile 'com.android.support:appcompat-v7:26.1.0'
|
|
|
|
compile 'com.android.support:recyclerview-v7:26.1.0'
|
|
|
|
compile 'com.android.support:design:26.1.0'
|
2014-11-22 01:09:12 +01:00
|
|
|
compile 'it.sephiroth.android.library.imagezoom:imagezoom:1.0.5'
|
2016-02-09 22:44:24 +01:00
|
|
|
compile 'org.greenrobot:eventbus:3.0.0'
|
2016-01-16 22:06:48 +01:00
|
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
2017-11-15 00:19:12 +01:00
|
|
|
compile 'com.squareup.okhttp3:okhttp:3.7.0'
|
2016-07-09 19:35:05 +02:00
|
|
|
compile 'com.squareup.okhttp3:okhttp-urlconnection:3.4.0'
|
2017-11-15 00:19:12 +01:00
|
|
|
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|