Advertisement
Guest User

build.gradle

a guest
Jan 30th, 2017
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion "23.0.3"
  6.  
  7. defaultConfig {
  8. applicationId "io.cnick.android.cnick"
  9. minSdkVersion 16
  10. targetSdkVersion 25
  11. versionCode 3
  12. versionName "1.2"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21.  
  22. repositories {
  23. flatDir {
  24. dirs 'libs'
  25. }
  26. maven {
  27. credentials {
  28. username "sdkuser"
  29. password "taplinx"
  30. }
  31. url "http://maven.taplinx.nxp.com/nexus/content/repositories/taplinx/"
  32. }
  33. }
  34.  
  35. dependencies {
  36. compile fileTree(dir: 'libs', include: ['*.jar'])
  37. compile 'com.android.support:appcompat-v7:25.1.0'
  38. compile 'com.android.support:design:25.1.0'
  39. compile 'com.android.support:support-v4:25.1.0'
  40. compile 'com.android.support:recyclerview-v7:25.1.0'
  41. compile 'com.android.volley:volley:1.0.0'
  42. compile 'com.google.code.gson:gson:2.4'
  43. compile 'com.andkulikov:transitionseverywhere:1.7.0'
  44. compile 'com.google.firebase:firebase-core:10.0.1'
  45. compile 'com.google.firebase:firebase-crash:10.0.1'
  46. compile 'com.google.firebase:firebase-messaging:10.0.1'
  47. compile 'com.facebook.android:facebook-android-sdk:4.18.0'
  48. compile('taplinx-android:nxpnfcandroidlib:1.0@aar') { transitive = true }
  49. testCompile 'junit:junit:4.12'
  50. }
  51.  
  52. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement