1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- apply plugin: 'com.android.library'
- 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'
- }
|