Advertisement
alexarcan

build.graddle(module:app)

Nov 29th, 2016
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.2"
  6.  
  7.  
  8. defaultConfig {
  9. multiDexEnabled true
  10. applicationId "com.example.student.googleapp"
  11. minSdkVersion 15
  12. targetSdkVersion 23
  13. versionCode 1
  14. versionName "1.0"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. }
  23.  
  24. dependencies {
  25. compile fileTree(dir: 'libs', include: ['*.jar'])
  26. testCompile 'junit:junit:4.12'
  27. compile 'com.android.support:appcompat-v7:23.4.0'
  28. compile 'com.google.android.gms:play-services:9.6.1'
  29. compile 'com.google.maps.android:android-maps-utils:0.4+'
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement