Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. signingConfigs {
  5. zero_experience {
  6. keyAlias 'zero_experience'
  7. keyPassword *******
  8. storeFile file('D:/Work/zero_experience.keystore')
  9. storePassword ********
  10. }
  11. }
  12. compileSdkVersion 'Google Inc.:Glass Development Kit Preview:19'
  13. buildToolsVersion '25.0.2'
  14. defaultConfig {
  15. applicationId "com.example.nubuntu.pdfviewer"
  16. minSdkVersion 19
  17. targetSdkVersion 19
  18. versionCode 1
  19. versionName "1.0"
  20. }
  21. buildTypes {
  22. release {
  23. minifyEnabled false
  24. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  25. debuggable false
  26. signingConfig signingConfigs.zero_experience
  27. }
  28. }
  29. }
  30.  
  31. dependencies {
  32. compile fileTree(include: ['*.jar'], dir: 'libs')
  33.  
  34. compile 'com.github.barteksc:android-pdf-viewer:2.6.1'
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement