Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. apply plugin: 'android'
  2. description = 'android-pdfview-sample'
  3. android {
  4. compileSdkVersion 19
  5. buildToolsVersion "19.0.3"
  6.  
  7. defaultConfig {
  8. minSdkVersion 8
  9. targetSdkVersion 19
  10. versionCode 2
  11. versionName "1.0.1"
  12. }
  13.  
  14. sourceSets {
  15. main {
  16. manifest.srcFile 'AndroidManifest.xml'
  17. resources.srcDirs = ['src']
  18. aidl.srcDirs = ['src']
  19. renderscript.srcDirs = ['src']
  20. res.srcDirs = ['res']
  21. assets.srcDirs = ['assets']
  22. }
  23. }
  24. }
  25.  
  26. dependencies {
  27. compile project(':android-pdfview')
  28. provided 'com.googlecode.androidannotations:androidannotations:2.7.1'
  29. compile 'com.googlecode.androidannotations:androidannotations-api:2.7.1'
  30. compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
  31. }
  32.  
  33. apply plugin: 'android-library'
  34. description = 'android-pdfview'
  35. android {
  36. compileSdkVersion 19
  37. buildToolsVersion '19.0.3'
  38.  
  39. sourceSets {
  40. main {
  41. manifest.srcFile 'AndroidManifest.xml'
  42. jniLibs.srcDirs = [ 'libs' ]
  43. }
  44. }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement