docs/docs-android/app/build.gradle

44 lines
1.1 KiB
Groovy
Raw Normal View History

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 {
classpath 'com.android.tools.build:gradle:3.4.0'
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 {
2018-10-18 23:57:08 +02:00
compileSdkVersion 28
2013-12-27 13:27:58 +01:00
defaultConfig {
minSdkVersion 14
2018-10-18 23:57:08 +02:00
targetSdkVersion 28
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
}
lintOptions {
abortOnError false
}
2013-12-27 13:27:58 +01:00
}
dependencies {
2018-10-18 23:57:08 +02:00
implementation fileTree(dir: 'libs', include: '*.jar')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'it.sephiroth.android.library.imagezoom:imagezoom:1.0.5'
implementation 'org.greenrobot:eventbus:3.1.1'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.10.0'
implementation 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
2013-12-27 13:27:58 +01:00
}