Advertisement
Aiduss

Untitled

Sep 25th, 2015
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion '23.0.1'
  6.  
  7. defaultConfig {
  8. applicationId "com.exs.gray.theme"
  9. minSdkVersion 21
  10. targetSdkVersion 23
  11. versionCode 1
  12. versionName "1.0"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. }
  18. }
  19. compileOptions {
  20. sourceCompatibility JavaVersion.VERSION_1_8
  21. targetCompatibility JavaVersion.VERSION_1_8
  22. }
  23.  
  24. }
  25.  
  26. dependencies {
  27. compile fileTree(include: ['*.jar'], dir: 'libs')
  28. testCompile 'junit:junit:4.12'
  29. compile 'com.android.support:support-v13:23.0.1'
  30. compile 'com.android.support:appcompat-v7:23.0.1'
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement