Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. android {
  2. compileSdkVersion 21
  3. buildToolsVersion ANDROID_BUILD_TOOLS_VERSION
  4. //compileOptions.encoding = 'windows-1254'
  5.  
  6. defaultConfig {
  7.  
  8. minSdkVersion ANDROID_BUILD_MIN_SDK_VERSION
  9. targetSdkVersion ANDROID_BUILD_TARGET_SDK_VERSION
  10. multiDexEnabled true
  11. }
  12.  
  13. dexOptions {
  14. //incremental true
  15. javaMaxHeapSize "2048M"
  16. }
  17.  
  18. buildTypes {
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  22. }
  23. }
  24. }
  25.  
  26. repositories {
  27. maven {
  28. url "http://maven.seamlessapi.com:8081/nexus/content/repositories/releases/"
  29. }
  30. }
  31.  
  32. dependencies {
  33. compile files('libs/picasso-2.5.2.jar')
  34. compile project(':Libraries:CropImageLib')
  35. compile project(':Libraries:facebook-android')
  36. compile project(':Libraries:NineOldLibs')
  37. compile project(':Libraries:SlidingMenu')
  38. compile files('libs/JTransforms-3.0.jar')
  39. compile files('libs/JLargeArrays-1.2.jar')
  40. compile files('libs/gdata-core-1.0.jar')
  41. compile 'com.android.support:recyclerview-v7:+'
  42. compile 'com.android.support:support-v4:18.0.+'
  43. compile 'com.android.support:appcompat-v7:18.0.+'
  44. compile 'com.goseamless:seamless:2.4.0'
  45. compile 'com.android.support:multidex:1.0.1'
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement