Facebook
From Gruff Eider, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 297
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 26
  5.     defaultConfig {
  6.         applicationId "com.example.garella.kchfoodtrucktrackingapps"
  7.         minSdkVersion 21
  8.         targetSdkVersion 26
  9.         versionCode 1
  10.         versionName "1.0"
  11.         multiDexEnabled true
  12.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13.     }
  14.     buildTypes {
  15.         release {
  16.             minifyEnabled false
  17.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18.         }
  19.     }
  20. }
  21.  
  22. dependencies {
  23.  
  24.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  25.     implementation 'com.github.glomadrian:MaterialAnimatedSwitch:1.1@aar'
  26.     implementation 'com.firebase:geofire-android:2.1.2'
  27.     implementation 'com.github.d-max:spots-dialog:0.7@aar'
  28.     implementation 'com.android.support:appcompat-v7:26.0.1'
  29.     implementation 'com.rengwuxian.materialedittext:library:2.1.4'
  30.     implementation 'com.android.support:design:26.0.1'
  31.     implementation 'com.android.support:cardview-v7:26.0.1'
  32.     implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  33.     implementation 'com.google.firebase:firebase-auth:10.2.0'
  34.     implementation 'com.google.firebase:firebase-database:10.2.0'
  35.     implementation 'com.google.android.gms:play-services-maps:10.2.0'
  36.     implementation 'com.google.android.gms:play-services:10.2.0'
  37.     testImplementation 'junit:junit:4.12'
  38.     androidTestImplementation 'com.android.support.test:runner:1.0.1'
  39.     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  40. }
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47. apply plugin: 'com.google.gms.google-services'