Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. apply plugin: 'kotlin-android'
  4.  
  5. apply plugin: 'kotlin-android-extensions'
  6.  
  7. apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'
  8.  
  9. android {
  10. compileSdkVersion 27
  11. defaultConfig {
  12. applicationId "rig.kotlin.blutip"
  13. minSdkVersion 26
  14. targetSdkVersion 27
  15. versionCode 1
  16. versionName "1.0"
  17. renderscriptTargetApi 26
  18. renderscriptSupportModeEnabled true
  19. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  20. manifestPlaceholders = [
  21. onesignal_app_id : 'f79ff133-e680-4294-bca2-9e0a15e16707',
  22. onesignal_google_project_number: 'REMOTE'
  23. ]
  24. }
  25. buildTypes {
  26. release {
  27. minifyEnabled false
  28. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  29. }
  30. }
  31. }
  32.  
  33. dependencies {
  34. implementation fileTree(include: ['*.jar'], dir: 'libs')
  35. implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
  36. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  37. testImplementation 'junit:junit:4.12'
  38. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  39. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  40. implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
  41. implementation 'com.squareup.retrofit2:retrofit:2.4.0'
  42. implementation 'com.squareup.okhttp3:logging-interceptor:3.9.0'
  43. api 'com.google.guava:guava:25.1-android'
  44. implementation 'com.android.support:support-v4:27.1.1'
  45. implementation 'com.android.support:design:27.1.1'
  46. implementation 'com.android.support:appcompat-v7:27.1.0'
  47. implementation 'com.android.support:cardview-v7:27.1.1'
  48. implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  49. implementation 'com.onesignal:OneSignal:[3.9.1, 3.99.99]'
  50. implementation 'com.google.android.gms:play-services-maps:15.0.1'
  51. implementation 'com.google.android.gms:play-services-places:15.0.1'
  52. implementation 'com.google.android.gms:play-services-location:15.0.1'
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement