12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- group 'com.edesarrollos.multimage_picker'
- version '1.0-SNAPSHOT'
- buildscript {
- repositories {
- google()
- jcenter()
- mavenCentral()
- maven { url 'https://maven.google.com' }
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.2.1'
- }
- }
- rootProject.allprojects {
- repositories {
- google()
- jcenter()
- }
- }
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 28
- defaultConfig {
- minSdkVersion 19
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- lintOptions {
- disable 'InvalidPackage'
- }
- }
- dependencies {
- implementation 'com.android.support:exifinterface:28.0.0'
- implementation 'com.sangcomz:FishBun:0.9.1'
- implementation 'com.github.bumptech.glide:glide:4.9.0'
- }
|