blob: 953d3b21b45f62746df8589165549309fe2d233e [file] [log] [blame]
group 'com.yourcompany.image_picker'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
maven {
url "https://jitpack.io"
}
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 27
defaultConfig {
minSdkVersion 16
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
}
dependencies {
api 'com.github.bumptech.glide:glide:4.0.0'
api 'com.github.esafirm.android-image-picker:imagepicker:1.9.2@aar'
api 'com.android.support:appcompat-v7:26.1.0'
api 'com.android.support:recyclerview-v7:26.1.0'
}