Advertisement
Kirizhik

Untitled

Jun 30th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion "25.0.0"
  6. defaultConfig {
  7. applicationId "com.example.currentplacedetailsonmap"
  8. minSdkVersion 15
  9. targetSdkVersion 25
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. resValue "string", "google_maps_key", (project.findProperty("GOOGLE_MAPS_API_KEY") ?: "")
  14. }
  15. buildTypes {
  16. debug {
  17. debuggable true
  18. }
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  22. }
  23. }
  24. }
  25.  
  26. dependencies {
  27. compile fileTree(dir: 'libs', include: ['*.jar'])
  28. compile 'com.android.support.constraint:constraint-layout:1.1.2'
  29. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  30. exclude group: 'com.android.support', module: 'support-annotations'
  31. })
  32. compile 'com.android.support:appcompat-v7:25.1.1'
  33. compile 'com.google.android.gms:play-services:11.2.0'
  34. testCompile 'junit:junit:4.12'
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement