Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion '26.0.0'
  6. defaultConfig {
  7. applicationId "ang previous mo na application id"
  8. minSdkVersion 14
  9. targetSdkVersion 25
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. productFlavors {
  21. }
  22. }
  23.  
  24. dependencies {
  25. compile fileTree(include: ['*.jar'], dir: 'libs')
  26. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  27. exclude group: 'com.android.support', module: 'support-annotations'
  28. })
  29. compile 'com.android.support:appcompat-v7:25.3.1'
  30. compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
  31. testCompile 'junit:junit:4.12'
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement