Guest User

Untitled

a guest
Sep 4th, 2015
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.77 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 23
  5.     buildToolsVersion '23'
  6.     defaultConfig {
  7.         applicationId "com.attilapalfi.exceptional"
  8.         minSdkVersion 14
  9.         targetSdkVersion 23
  10.         versionCode 1
  11.         versionName "1.0"
  12.     }
  13.     buildTypes {
  14.         release {
  15.             minifyEnabled false
  16.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17.         }
  18.     }
  19.     compileOptions {
  20.         sourceCompatibility JavaVersion.VERSION_1_8
  21.         targetCompatibility JavaVersion.VERSION_1_8
  22.     }
  23.     productFlavors {
  24.     }
  25. }
  26. repositories {
  27.     mavenCentral()
  28.     maven { url 'https://dl.bintray.com/drummer-aidan/maven' }
  29. }
  30. dependencies {
  31.     compile fileTree(include: ['*.jar'], dir: 'libs')
  32.     compile 'net.sourceforge.streamsupport:streamsupport:1.3.1'
  33.     compile 'com.annimon:stream:1.0.3'
  34.     compile 'com.android.support:appcompat-v7:23.0.0'
  35.     compile 'com.facebook.android:facebook-android-sdk:4.2.0'
  36.     compile 'com.android.support:support-v4:23.0.0'
  37.     compile 'com.google.android.gms:play-services:7.8.0'
  38.     compile 'com.afollestad:material-dialogs:0.7.5.5'
  39.     compile 'com.squareup.retrofit:retrofit:1.9.0'
  40.     compile 'com.android.support:cardview-v7:23.0.0'
  41.     compile 'com.android.support:recyclerview-v7:23.0.0'
  42.     compile files('libs/gson-2.3.1.jar')
  43.     compile files('libs/universal-image-loader-1.9.4-with-sources.jar')
  44. }
  45. buildscript {
  46.     repositories {
  47.         mavenCentral()
  48.     }
  49.  
  50.     dependencies {
  51.         classpath 'com.android.tools.build:gradle:1.3.0'
  52.         classpath 'me.tatarka:gradle-retrolambda:3.2.2'
  53.     }
  54. }
  55. apply plugin: 'com.android.application' //or apply plugin: 'java'
  56. apply plugin: 'me.tatarka.retrolambda'
Advertisement
Add Comment
Please, Sign In to add comment