Guest User

Untitled

a guest
May 24th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 27
  5. buildToolsVersion "27.0.3"
  6.  
  7. defaultConfig {
  8. applicationId "com.example.android.miwok"
  9. minSdkVersion 15
  10. targetSdkVersion 27
  11. versionCode 1
  12. versionName "1.0"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21.  
  22. dependencies {
  23. compile fileTree(dir: 'libs', include: ['*.jar'])
  24. testCompile 'junit:junit:4.12'
  25. compile 'com.android.support:appcompat-v7:27.1.1'
  26. compile 'com.android.support:support-v4:27.1.1'
  27. compile 'com.android.support:design:27.1.1'
  28. }
Add Comment
Please, Sign In to add comment