Guest User

Untitled

a guest
Oct 19th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <fragment
  2. android:id="@+id/fragment_view_map"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. class="com.google.android.gms.maps.MapFragment">
  6. </fragment>
  7.  
  8. apply plugin: 'com.android.application'
  9.  
  10. android {
  11. compileSdkVersion 26
  12. buildToolsVersion "26.0.2"
  13. defaultConfig {
  14. multiDexEnabled true
  15. applicationId "com.track.map"
  16. minSdkVersion 21
  17. targetSdkVersion 26
  18. versionCode 1
  19. versionName "1.0"
  20. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  21. }
  22. buildTypes {
  23. release {
  24. minifyEnabled false
  25. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  26. }
  27. }
  28. }
  29.  
  30. dependencies {
  31. compile fileTree(include: ['*.jar'], dir: 'libs')
  32. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  33. exclude group: 'com.android.support', module: 'support-annotations'
  34. })
  35.  
  36. compile 'com.android.support:appcompat-v7:26.+'
  37. compile 'com.android.support:design:26.1.0'
  38. compile 'com.google.android.gms:play-services-location:11.4.2'
  39. compile 'com.google.android.gms:play-services-maps:11.4.2'
  40. compile 'com.android.support:support-v4:26.+'
  41. testCompile 'junit:junit:4.12'
  42. }
Add Comment
Please, Sign In to add comment