123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
- buildscript {
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath 'me.tatarka:gradle-retrolambda:3.3.1'
- }
- }
- repositories {
- mavenCentral()
- maven { url 'https://maven.google.com' }
- }
- apply plugin: 'com.android.library'
- apply plugin: 'me.tatarka.retrolambda'
- android {
- compileSdkVersion 25
- buildToolsVersion '25.0.0'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- defaultConfig {
- minSdkVersion 15
- targetSdkVersion 25
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- compile 'com.android.support:appcompat-v7:25.0.0'
- compile 'com.android.support.constraint:constraint-layout:1.0.2'
- compile 'com.afollestad.material-dialogs:core:0.9.1.0'
- testCompile 'junit:junit:4.12'
- //glide
- compile 'com.github.bumptech.glide:glide:3.7.0'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.1.1'
- compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- compile 'com.google.code.gson:gson:2.8.5'
- }
|