Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.2"
  6.  
  7. defaultConfig {
  8. applicationId "avinash.example.project.A"
  9. minSdkVersion 14
  10. targetSdkVersion 23
  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(include: ['*.jar'], dir: 'libs')
  24. testCompile 'junit:junit:4.12'
  25. compile 'com.android.support:appcompat-v7:23.1.1'
  26. compile project(':B')
  27. }
  28.  
  29. apply plugin: 'com.android.library'
  30.  
  31. android {
  32. buildToolsVersion "23.0.2"
  33. compileSdkVersion 23
  34.  
  35. useLibrary 'org.apache.http.legacy'
  36.  
  37. defaultConfig {
  38. minSdkVersion 14
  39. targetSdkVersion 23
  40. versionCode 1
  41. versionName "1.0"
  42. }
  43. buildTypes {
  44. release {
  45. minifyEnabled false
  46. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  47. }
  48. }
  49. }
  50.  
  51.  
  52.  
  53. dependencies {
  54. compile fileTree(include: ['*.jar'], dir: 'libs')
  55. testCompile 'junit:junit:4.12'
  56. compile 'com.android.support:appcompat-v7:23.1.1'
  57. compile 'com.android.support:design:23.1.1'
  58. compile 'com.uservoice:uservoice-android-sdk:+'
  59. compile 'com.mcxiaoke.volley:library:1.0.19'
  60. compile 'com.commit451:PhotoView:1.2.4'
  61. compile 'com.github.gabrielemariotti.changeloglib:changelog:2.0.0'
  62. compile 'com.squareup.okhttp3:okhttp:3.0.1'
  63. compile project(':fileExplorer')
  64. compile project(':refreshAction')
  65. compile project(':viewPagerIndicator')
  66. compile files('libs/jsoup-1.7.2.jar')
  67. compile files('libs/android-support-v4.jar')
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement