Guest User

Untitled

a guest
Feb 9th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.46 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'me.tatarka.retrolambda'
  3.  
  4. android {
  5.     compileSdkVersion 21
  6.     buildToolsVersion "21.1.1"
  7.  
  8.     defaultConfig {
  9.         applicationId "ua.samosfator.moduleok"
  10.         minSdkVersion 14
  11.         targetSdkVersion 21
  12.         versionCode 1
  13.         versionName "0.4.4"
  14.     }
  15.     buildTypes {
  16.         release {
  17.             minifyEnabled false
  18.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19.         }
  20.     }
  21.     project.gradle.taskGraph.whenReady {
  22.         connectedAndroidTest {
  23.             ignoreFailures = true
  24.         }
  25.     }
  26.     compileOptions {
  27.         sourceCompatibility JavaVersion.VERSION_1_8
  28.         targetCompatibility JavaVersion.VERSION_1_8
  29.     }
  30. }
  31.  
  32. dependencies {
  33.     compile fileTree(dir: 'libs', include: ['*.jar'])
  34.     retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:1.6.0'
  35.     compile 'net.sourceforge.streamsupport:streamsupport:1.1.3'
  36.     compile 'com.android.support:appcompat-v7:21.0.3'
  37.     compile 'com.android.support:recyclerview-v7:21.0.3'
  38.     compile 'org.jsoup:jsoup:1.8.1'
  39.     compile 'com.rengwuxian.materialedittext:library:1.7.1'
  40.     compile 'com.balysv:material-ripple:0.9.5-SNAPSHOT@aar'
  41.     compile 'de.greenrobot:eventbus:2.4.0'
  42.     compile 'com.jpardogo.materialtabstrip:library:1.0.7'
  43.     compile "com.splunk.mint:mint:4.0.8"
  44.     compile 'com.github.dmytrodanylyk.circular-progress-button:library:1.1.3'
  45. }
Advertisement
Add Comment
Please, Sign In to add comment