Advertisement
Guest User

Untitled

a guest
May 25th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. maven { url 'https://maven.fabric.io/public' }
  4. }
  5.  
  6. dependencies {
  7. classpath 'io.fabric.tools:gradle:1.+'
  8. }
  9. }
  10. apply plugin: 'com.android.application'
  11. apply plugin: 'io.fabric'
  12.  
  13. repositories {
  14. maven { url 'https://maven.fabric.io/public' }
  15. }
  16.  
  17.  
  18. android {
  19. compileSdkVersion 27
  20. defaultConfig {
  21. applicationId "dev.hdcstudio.tubecomment"
  22. minSdkVersion 19
  23. targetSdkVersion 27
  24. versionCode 4
  25. versionName "1.3"
  26. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  27. multiDexEnabled true
  28. externalNativeBuild {
  29. cmake {
  30. cppFlags "-fexceptions"
  31. }
  32. }
  33. }
  34. externalNativeBuild {
  35. cmake {
  36. path "CMakeLists.txt"
  37. }
  38. }
  39. signingConfigs {
  40. release {
  41. storeFile file("sub4subpro")
  42. storePassword "hdcstudio"
  43. keyAlias "dev.hdcstudio"
  44. keyPassword "hdcstudio"
  45. }
  46. }
  47. buildTypes {
  48. debug {
  49. debuggable true
  50. }
  51. release {
  52. // debuggable false
  53. minifyEnabled true
  54. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  55. }
  56. }
  57. }
  58.  
  59. dependencies {
  60.  
  61. implementation fileTree(dir: 'libs', include: ['*.jar'])
  62. implementation 'com.android.support:appcompat-v7:27.1.0'
  63. implementation 'com.android.support:cardview-v7:27.1.0'
  64. implementation 'com.android.support:support-v4:27.1.0'
  65. implementation 'com.android.support:recyclerview-v7:27.1.0'
  66. implementation 'com.squareup.picasso:picasso:2.5.2'
  67. implementation 'com.android.support:design:27.1.0'
  68. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  69.  
  70. implementation 'com.google.code.gson:gson:2.8.0'
  71. implementation 'com.android.support:multidex:1.0.2'
  72.  
  73. implementation('com.google.apis:google-api-services-youtube:v3-rev180-1.22.0') {
  74. exclude module: 'httpclient'
  75. }
  76. implementation('com.google.api-client:google-api-client-android:1.22.0') {
  77. exclude group: 'org.apache.httpcomponents'
  78. }
  79. implementation 'com.google.android.gms:play-services-auth:16.0.1'
  80. implementation 'pub.devrel:easypermissions:1.2.0'
  81.  
  82. implementation 'joda-time:joda-time:2.9.7'
  83.  
  84. implementation 'com.google.firebase:firebase-core:16.0.6'
  85. implementation 'com.google.firebase:firebase-ads:17.1.2'
  86. implementation 'com.google.firebase:firebase-invites:16.0.6'
  87.  
  88. implementation 'com.jakewharton:butterknife:8.8.1'
  89. annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
  90.  
  91. implementation 'com.squareup.retrofit2:retrofit:2.4.0'
  92. implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
  93.  
  94. implementation 'com.android.support:preference-v14:27.1.0'
  95. implementation 'com.android.support:support-annotations:27.0.2'
  96. implementation 'org.jsoup:jsoup:1.11.2'
  97. implementation 'com.thoughtbot:expandablerecyclerview:1.3'
  98. implementation 'org.greenrobot:eventbus:3.1.1'
  99. implementation 'com.nex3z:flow-layout:1.2.4'
  100. implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
  101. }
  102.  
  103. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement