Guest User

Untitled

a guest
Mar 7th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.84 KB | None | 0 0
  1. failed to find style 'cardView Style' in current theme
  2.  
  3. apply plugin: 'com.android.application'
  4. apply plugin: 'kotlin-android'
  5. apply plugin: 'kotlin-android-extensions'
  6. apply plugin: 'realm-android'
  7. apply plugin: 'kotlin-kapt'
  8.  
  9. android {
  10. compileSdkVersion 27
  11. defaultConfig {
  12. applicationId "com.tmmmt.tmmmt"
  13. minSdkVersion 19
  14. versionCode 1
  15. versionName "1.0"
  16. }
  17. buildTypes {
  18. release {
  19. minifyEnabled false
  20. buildConfigField 'String', 'FS_CLIENT_ID', FOURSQUARE_CLIENT_ID
  21. buildConfigField 'String', 'FS_CLIENT_SECRET', FOURSQUARE_CLIENT_SECRET
  22. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  23. }
  24. debug {
  25. minifyEnabled false
  26. buildConfigField 'String', 'FS_CLIENT_ID', FOURSQUARE_CLIENT_ID
  27. buildConfigField 'String', 'FS_CLIENT_SECRET', FOURSQUARE_CLIENT_SECRET
  28. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  29. }
  30. }
  31.  
  32. flavorDimensions "default"
  33.  
  34. productFlavors {
  35. dev {
  36. dimension "default"
  37. versionNameSuffix "-dev"
  38. buildConfigField 'String', 'BASE_URL', BASE_URL_DEV
  39. manifestPlaceholders = [GEO_API_KEY: GOOGLE_MAP_KEY_DEV]
  40. }
  41.  
  42. beta {
  43. dimension "default"
  44. versionNameSuffix "-beta"
  45. buildConfigField 'String', 'BASE_URL', BASE_URL_BETA
  46. manifestPlaceholders = [GEO_API_KEY: GOOGLE_MAP_KEY_BETA]
  47. }
  48.  
  49. live {
  50. dimension "default"
  51. buildConfigField 'String', 'BASE_URL', BASE_URL_LIVE
  52.  
  53. manifestPlaceholders = [GEO_API_KEY: GOOGLE_MAP_KEY_LIVE]
  54. }
  55. }
  56. }
  57.  
  58. dependencies {
  59. implementation fileTree(include: ['*.jar'], dir: 'libs')
  60. implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
  61. implementation "org.jetbrains.anko:anko-common:$anko_version"
  62. implementation "com.android.support:appcompat-v7:$support_version"
  63. implementation "com.android.support:support-v13:$support_version"
  64. implementation "com.android.support:design:$support_version"
  65. implementation "com.android.support:cardview-v7:$support_version"
  66. implementation "com.google.firebase:firebase-messaging:$play_version"
  67. implementation "com.google.android.gms:play-services-maps:$play_version"
  68. implementation "com.google.android.gms:play-services-location:$play_version"
  69. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  70. implementation 'com.squareup.retrofit2:retrofit:2.3.0'
  71. implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
  72. implementation 'com.squareup.okhttp3:logging-interceptor:3.8.0'
  73. implementation 'com.squareup.okhttp3:okhttp:3.8.1'
  74. implementation 'com.squareup.picasso:picasso:2.5.2'
  75. implementation 'com.google.code.gson:gson:2.8.0'
  76. implementation 'com.wang.avi:library:2.1.3'
  77. implementation 'com.tmmmt.library:arrowtab:1.3'
  78. implementation 'com.github.stfalcon:chatkit:0.2.2'
  79. implementation 'com.amazonaws:aws-android-sdk-core:2.6.16'
  80. implementation 'com.amazonaws:aws-android-sdk-cognito:2.6.16'
  81. implementation 'com.amazonaws:aws-android-sdk-s3:2.6.16'
  82. implementation 'com.orhanobut:logger:2.1.1'
  83. implementation 'com.tmmmt.library:animations:0.6'
  84. implementation 'com.github.bumptech.glide:glide:4.6.1'
  85. annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
  86. compile('io.socket:socket.io-client:1.0.0') {
  87. exclude group: 'org.json', module: 'json'
  88. }
  89. /*Fort*/
  90. implementation project(':FortSDKv1.4.1')
  91. implementation 'com.victor:lib:1.0.1'
  92. implementation 'com.shamanland:fonticon:0.1.8'
  93. implementation('com.nispok:snackbar:2.11.0') {
  94. exclude group: 'com.google.android', module: 'support-v4'
  95. }
  96. implementation 'com.google.guava:guava:23.0-android'
  97. implementation 'org.bouncycastle:bcprov-jdk16:1.46'
  98. implementation 'commons-codec:commons-codec:1.10'
  99. /*Fort*/
  100. }
  101.  
  102. apply plugin: 'com.google.gms.google-services'
  103.  
  104. buildscript {
  105. ext.kotlin_version = '1.2.30'
  106. ext.anko_version = '0.10.1'
  107. ext.support_version = '27.0.2'
  108. ext.play_version = '11.8.0'
  109. repositories {
  110. google()
  111. jcenter()
  112. }
  113. dependencies {
  114. classpath 'com.android.tools.build:gradle:3.0.1'
  115. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  116. classpath "io.realm:realm-gradle-plugin:4.3.2"
  117. classpath 'com.google.gms:google-services:3.1.0'
  118. }
  119. }
  120.  
  121. allprojects {
  122. repositories {
  123. google()
  124. jcenter()
  125. maven {
  126. url "https://mymavenrepo.com/repo/eDGOo6Dqr4f6uNA0HoWX/"
  127. credentials {
  128. username = 'myMavenRepo'
  129. password = 'tmmmt123'
  130. }
  131. }
  132. }
  133. }
  134.  
  135. task clean(type: Delete) {
  136. delete rootProject.buildDir
  137. }
Add Comment
Please, Sign In to add comment