Guest User

Untitled

a guest
Jan 23rd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. android {
  2. compileSdkVersion 26
  3. defaultConfig {
  4. applicationId "com.tberwick.hishhash"
  5. minSdkVersion 19
  6. targetSdkVersion 26
  7. versionCode 1
  8. versionName "1.0"
  9. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. implementation fileTree(dir: 'libs', include: ['*.jar'])
  20. implementation 'com.android.support:appcompat-v7:26.1.0'
  21. implementation 'com.android.support:animated-vector-drawable:26.1.0'
  22. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  23. testImplementation 'junit:junit:4.12'
  24. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  25. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  26. implementation "android.arch.persistence.room:runtime:1.0.0"
  27. annotationProcessor "android.arch.persistence.room:compiler:1.0.0"
  28.  
  29. implementation 'com.android.support:recyclerview-v7:26.1.0'
  30.  
  31. implementation 'com.facebook.android:facebook-android-sdk:[4,5)'
  32. implementation "android.arch.lifecycle:extensions:1.0.0"
  33. annotationProcessor "android.arch.lifecycle:compiler:1.0.0"
  34. }
Add Comment
Please, Sign In to add comment