Advertisement
jasperlow

Untitled

May 14th, 2015
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. dependencies {
  4. compile project(':MW_GooglePlayService')
  5. compile project(':MW_ImgCrop')
  6. compile project(':MW_JoanzapataPDFViewer')
  7. compile files('libs/android-support-v4.jar')
  8. compile files('libs/crashlytics.jar')
  9. compile files('libs/core-2.2.jar')
  10. compile files('libs/google-play-services.jar')
  11. compile files('libs/gson-2.2.4.jar')
  12. compile files('libs/ksoap2-android-assembly-3.3.0-jar-with-dependencies.jar')
  13. compile files('libs/listviewanimations_lib-core_3.1.0.jar')
  14. compile files('libs/nineoldandroids-2.4.0.jar')
  15. compile files('libs/zbar.jar')
  16. }
  17.  
  18. android {
  19.  
  20. compileSdkVersion 19
  21. buildToolsVersion '21.1.2'
  22. sourceSets {
  23. main {
  24. manifest.srcFile 'AndroidManifest.xml'
  25. java.srcDirs = ['src']
  26. resources.srcDirs = ['src']
  27. aidl.srcDirs = ['src']
  28. renderscript.srcDirs = ['src']
  29. res.srcDirs = ['res']
  30. assets.srcDirs = ['assets']
  31. }
  32.  
  33. // Move the tests to tests/java, tests/res, etc...
  34. instrumentTest.setRoot('tests')
  35.  
  36. // Move the build types to build-types/<type>
  37. // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
  38. // This moves them out of them default location under src/<type>/... which would
  39. // conflict with src/ being used by the main source set.
  40. // Adding new build types or product flavors should be accompanied
  41. // by a similar customization.
  42. debug.setRoot('build-types/debug')
  43. release.setRoot('build-types/release')
  44. }
  45. defaultConfig {
  46. applicationId 'com.sifb.sme.ewallet'
  47. versionCode 1
  48. versionName '1.0-P1B'
  49. minSdkVersion 14
  50. targetSdkVersion 20
  51. signingConfig signingConfigs.SME$co123
  52. }
  53. productFlavors {
  54. }
  55. buildTypes {
  56. debug {
  57. jniDebuggable true
  58. signingConfig signingConfigs.SME$co123
  59. minifyEnabled false
  60. }
  61.  
  62.  
  63.  
  64. release {
  65. signingConfig signingConfigs.SME$co123
  66. minifyEnabled false
  67. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  68. }
  69. }
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement