Advertisement
Guest User

Untitled

a guest
Jul 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 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. android {
  8.  
  9. compileSdkVersion android_compile_version
  10.  
  11. defaultConfig {
  12. applicationId "com.spyrosk.alchemy.symbols"
  13. minSdkVersion android_min_sdk_version
  14. targetSdkVersion android_compile_version
  15. versionCode 4
  16. versionName "4.0"
  17. multiDexEnabled true
  18. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  19. }
  20. buildTypes {
  21. lintOptions {
  22. checkReleaseBuilds false
  23. abortOnError false
  24. }
  25. release {
  26. debuggable false
  27. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  28. }
  29.  
  30. debug {
  31. debuggable true
  32. minifyEnabled false
  33. }
  34. }
  35. }
  36.  
  37. dependencies {
  38. implementation fileTree(dir: 'libs', include: ['*.jar'])
  39. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${kotlin_version}"
  40.  
  41. implementation "com.android.support:appcompat-v7:${appcompat_library_version}"
  42. implementation "com.android.support:support-v4:${appcompat_library_version}"
  43. implementation "com.android.support:support-v13:${appcompat_library_version}"
  44. implementation "com.android.support:design:${support_library_version}"
  45. implementation 'com.android.support.constraint:constraint-layout:1.1.2'
  46.  
  47.  
  48. implementation "com.google.android.gms:play-services-games:${gms_library_version}"
  49. implementation "com.google.android.gms:play-services-auth:${gms_library_version}"
  50. implementation "com.google.android.gms:play-services-analytics:${analytics_library_version}"
  51.  
  52. implementation 'com.squareup.picasso:picasso:2.71828'
  53. implementation 'com.android.support.constraint:constraint-layout:1.1.2'
  54. implementation "org.jetbrains.anko:anko-common:0.9.1"
  55. implementation 'org.jetbrains.anko:anko-sdk15:0.8.3'
  56.  
  57. testImplementation 'junit:junit:4.12'
  58. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  59. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement