Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.00 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'realm-android'
  3.  
  4. android {
  5.     compileSdkVersion 24
  6.     buildToolsVersion "24.0.3"
  7.  
  8.     defaultConfig {
  9.         applicationId "br.com.infog2.thefarma"
  10.         minSdkVersion 16
  11.         targetSdkVersion 24
  12.         versionCode 1
  13.         versionName "1.0"
  14.  
  15.         multiDexEnabled true
  16.         vectorDrawables.useSupportLibrary = true
  17.     }
  18.     buildTypes {
  19.         release {
  20.             minifyEnabled false
  21.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  22.             lintOptions {
  23.                 disable 'MissingTranslation'
  24.             }
  25.         }
  26.     }
  27. }
  28.  
  29. dependencies {
  30.     compile fileTree(dir: 'libs', include: ['*.jar'])
  31.     testCompile 'junit:junit:4.12'
  32.  
  33.     // UI
  34.     compile 'com.android.support:appcompat-v7:24.2.1'
  35.     compile 'com.android.support:support-v4:24.2.1'
  36.     compile 'com.android.support:design:24.2.1'
  37.     compile 'com.android.support:cardview-v7:24.1.1'
  38.     compile 'com.github.clans:fab:1.6.4'
  39.     compile 'com.wdullaer:materialdatetimepicker:1.4.2'
  40.     compile 'com.google.apis:google-api-services-youtube:v3-rev180-1.22.0'
  41.     compile files('libs/YouTubeAndroidPlayerApi.jar')
  42.  
  43.     // Database
  44.     compile 'com.google.android.gms:play-services:9.4.0'
  45.     compile 'com.google.firebase:firebase-database:9.4.0'
  46.     compile 'com.google.firebase:firebase-messaging:9.4.0'
  47.  
  48.     // Debug Database
  49.     compile 'com.facebook.stetho:stetho:1.2.0'
  50.     compile 'com.facebook.stetho:stetho-okhttp:1.1.1'
  51.     compile 'com.uphyca:stetho_realm:0.8.0'
  52.  
  53.     // Others
  54.     compile 'com.android.support:multidex:1.0.1'
  55.     compile 'com.github.bumptech.glide:glide:3.7.0'
  56.     compile 'com.facebook.android:facebook-android-sdk:4.5.0'
  57.  
  58.     //Network
  59.     compile 'com.squareup.retrofit2:retrofit:2.1.0'
  60.     compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
  61.     compile 'com.squareup.okhttp3:logging-interceptor:3.4.0'
  62. }
  63.  
  64.  
  65. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement