Markwon/build.gradle
zTrap 338bcabd6e **library
- All images now clickable

**library-image-loader

 - AsyncDrawableLoader now have resize to custom sizes logic

**Other

 - bump buildTools, targetSdk, supportVersion, dagger and okhttp to max actual version
 - variables names are modified to better match the [google codestyle](https://google.github.io/styleguide/javaguide.html)
2017-10-26 09:04:27 +03:00

49 lines
1.2 KiB
Groovy

buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
}
}
allprojects {
repositories {
jcenter()
google()
}
version = VERSION_NAME
group = GROUP
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task wrapper(type: Wrapper) {
gradleVersion '4.1'
}
ext {
// Config
BUILD_TOOLS = '27.0.0'
TARGET_SDK = 27
MIN_SDK = 16
// Dependencies
final def supportVersion = '27.0.0'
SUPPORT_ANNOTATIONS = "com.android.support:support-annotations:$supportVersion"
SUPPORT_APP_COMPAT = "com.android.support:appcompat-v7:$supportVersion"
final def commonMarkVersion = '0.9.0'
COMMON_MARK = "com.atlassian.commonmark:commonmark:$commonMarkVersion"
COMMON_MARK_STRIKETHROUGHT = "com.atlassian.commonmark:commonmark-ext-gfm-strikethrough:$commonMarkVersion"
COMMON_MARK_TABLE = "com.atlassian.commonmark:commonmark-ext-gfm-tables:$commonMarkVersion"
ANDROID_SVG = 'com.caverock:androidsvg:1.2.1'
ANDROID_GIF = 'pl.droidsonroids.gif:android-gif-drawable:1.2.7'
OK_HTTP = 'com.squareup.okhttp3:okhttp:3.9.0'
}