Guest User

Untitled

a guest
Jan 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. maven { url 'https://maven.fabric.io/public' }
  4. }
  5.  
  6. dependencies {
  7. classpath 'io.fabric.tools:gradle:1.+'
  8.  
  9. }
  10. }
  11. apply plugin: 'com.android.application'
  12. apply plugin: 'io.fabric'
  13.  
  14. repositories {
  15. maven { url 'https://maven.fabric.io/public' }
  16. }
  17.  
  18.  
  19. android {
  20. compileSdkVersion 21
  21. buildToolsVersion "23.0.1"
  22.  
  23. defaultConfig {
  24. applicationId "com.example"
  25. minSdkVersion 15
  26. targetSdkVersion 19
  27. multiDexEnabled true
  28.  
  29. resValue "string", "tray__authority", "com.example"
  30. }
  31.  
  32. buildTypes {
  33. release {
  34. minifyEnabled false
  35. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  36. }
  37. }
  38. compileOptions {
  39. sourceCompatibility JavaVersion.VERSION_1_7
  40. targetCompatibility JavaVersion.VERSION_1_7
  41. }
  42. packagingOptions {
  43. exclude 'META-INF/DEPENDENCIES'
  44. exclude 'META-INF/LICENSE'
  45. exclude 'META-INF/LICENSE.txt'
  46. exclude 'META-INF/license.txt'
  47. exclude 'META-INF/NOTICE'
  48. exclude 'META-INF/NOTICE.txt'
  49. exclude 'META-INF/notice.txt'
  50. exclude 'META-INF/ASL2.0'
  51. exclude 'META-INF/maven'
  52. exclude 'META-INF/MANIFEST.MF'
  53. exclude 'NOTICE.txt'
  54. }
  55.  
  56. }
  57.  
  58. dependencies {
  59. compile project(':abslib')
  60. compile project(':googleplayservices_lib')
  61. compile files('libs/recyclerview-21.0.0.jar')
  62. compile files('libs/gcm.jar')
  63. compile files('libs/ksoap2.jar')
  64. compile 'org.apache.commons:commons-io:1.3.2'
  65. compile('net.grandcentrix.tray:tray:1.0.0-rc3') {
  66. exclude group: 'com.android.support', module: 'support-annotations'
  67. }
  68. compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
  69. transitive = true;
  70. }
  71. compile 'com.android.support:multidex:1.0.1'
  72. }
  73. configurations { all*.exclude group: 'com.android.support', module: 'support-v4' }
  74.  
  75. ### Android template
  76. /local.properties
  77. /.idea/workspace.xml
  78. /.idea/libraries
  79. .DS_Store
  80. /build
  81.  
  82. .idea/workspace.xml
  83.  
  84. # Built application files
  85. .idea
  86. *.apk
  87. *.ap_
  88.  
  89. # Files for the Dalvik VM
  90. *.dex
  91.  
  92. # Java class files
  93. *.class
  94.  
  95. # Generated files
  96. bin/
  97. gen/
  98.  
  99. # Gradle files
  100. .gradle/
  101. build/
  102.  
  103. # Local configuration file (sdk path, etc)
  104. local.properties
  105.  
  106. # Proguard folder generated by Eclipse
  107. proguard/
  108.  
  109. # Log Files
  110. *.log
  111.  
  112. # Android Studio Navigation editor temp files
  113. .navigation/
Add Comment
Please, Sign In to add comment