Guest User

Untitled

a guest
Sep 17th, 2015
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'me.tatarka.retrolambda'
  4. apply plugin: 'com.neenbedankt.android-apt'
  5. android {
  6.     compileSdkVersion 23
  7.     buildToolsVersion '23'
  8.     defaultConfig {
  9.         applicationId "com.attilapalfi.exceptional"
  10.         minSdkVersion 14
  11.         targetSdkVersion 23
  12.         versionCode 1
  13.         versionName "1.0"
  14.         multiDexEnabled true
  15.     }
  16.     buildTypes {
  17.         release {
  18.             minifyEnabled false
  19.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20.         }
  21.     }
  22.     compileOptions {
  23.         sourceCompatibility JavaVersion.VERSION_1_8
  24.         targetCompatibility JavaVersion.VERSION_1_8
  25.     }
  26.     productFlavors {
  27.     }
  28.     sourceSets.main {
  29.         java.srcDirs = ['src/main/java', 'gen']
  30.     }
  31.     sourceSets {
  32.         main.java.srcDirs += 'src/main/kotlin'
  33.     }
  34.     dexOptions {
  35.         incremental true
  36.         javaMaxHeapSize "2g"
  37.     }
  38. }
  39. repositories {
  40.     mavenCentral()
  41.     maven { url 'https://dl.bintray.com/drummer-aidan/maven' }
  42. }
  43. dependencies {
  44.     apt 'com.google.dagger:dagger-compiler:2.0.1'
  45.     compile fileTree(include: ['*.jar'], dir: 'libs')
  46.     compile 'com.google.dagger:dagger:2.0.1'
  47.     provided 'org.glassfish:javax.annotation:10.0-b28'
  48.     compile 'com.android.support:multidex:1.0.1'
  49.     compile 'net.sourceforge.streamsupport:streamsupport:1.3.1'
  50.     compile 'com.android.support:appcompat-v7:23.0.0'
  51.     compile 'com.facebook.android:facebook-android-sdk:4.2.0'
  52.     compile 'com.android.support:support-v4:23.0.0'
  53.     compile 'com.google.android.gms:play-services:7.8.0'
  54.     compile 'com.afollestad:material-dialogs:0.7.5.5'
  55.     compile 'com.squareup.retrofit:retrofit:1.9.0'
  56.     compile 'com.android.support:cardview-v7:23.0.0'
  57.     compile 'com.android.support:recyclerview-v7:23.0.0'
  58.     compile files('libs/gson-2.3.1.jar')
  59.     compile files('libs/universal-image-loader-1.9.4-with-sources.jar')
  60.     compile "org.jetbrains.kotlin:kotlin-stdlib:0.13.1513"
  61. }
Advertisement
Add Comment
Please, Sign In to add comment