Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. //noinspection GradleCompatible
  2. apply plugin: 'com.android.application'
  3. apply plugin: 'kotlin-android'
  4.  
  5. android {
  6. compileSdkVersion 26
  7. defaultConfig {
  8. applicationId "com.sambalado.daddyyankee.dura"
  9. manifestPlaceholders = [manifestApplicationId: "${applicationId}",
  10. onesignal_app_id: "e7b5276d-219c-4bf5-a665-10e0ce250450",
  11. onesignal_google_project_number: "416472249399"]
  12. minSdkVersion 15
  13. targetSdkVersion 26
  14. versionCode 1
  15. versionName "1.0"
  16. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  17. }
  18. buildTypes {
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  22. }
  23. }
  24. }
  25.  
  26. dependencies {
  27. implementation fileTree(dir: 'libs', include: ['*.jar'])
  28. implementation 'com.android.support:appcompat-v7:26.1.0'
  29. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  30. compile 'com.google.android.gms:play-services-ads:11.8.0'
  31. compile 'com.google.android.gms:play-services-gcm:11.8.0'
  32. compile 'com.google.android.gms:play-services-location:11.8.0'
  33. compile 'com.onesignal:OneSignal:3.7.1@aar'
  34. compile 'com.github.clans:fab:1.6.2'
  35. testImplementation 'junit:junit:4.12'
  36. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  37. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  38. compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  39. }
  40. repositories {
  41. mavenCentral()
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement