Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.25 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 29
  5.     buildToolsVersion "29.0.3"
  6.     defaultConfig {
  7.         applicationId "com.example.rayn"
  8.         minSdkVersion 15
  9.         targetSdkVersion 29
  10.         versionCode 1
  11.         versionName "1.0"
  12.         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13.     }
  14.     buildTypes {
  15.         release {
  16.             minifyEnabled false
  17.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18.         }
  19.     }
  20. }
  21.  
  22. dependencies {
  23.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  24.     implementation 'androidx.appcompat:appcompat:1.1.0'
  25.     implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  26.     testImplementation 'junit:junit:4.12'
  27.     androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  28.     androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  29.  
  30.     implamentation 'com.google.firebase:firebase-auth'
  31.     implamentation 'com.google.firebase:firebase-database'
  32.     implamentation 'com.android.support:design'
  33.     implamentation 'com.rengwuxian.materialedittext:library'
  34.     implamentation 'uk.co.chrisjenx:calligraphy'
  35. }
  36. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement