react-native-navigation的迁移库

build.gradle 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. apply plugin: 'com.android.library'
  2. apply from: '../prepare-robolectric.gradle'
  3. android {
  4. compileSdkVersion 26
  5. buildToolsVersion '27.0.3'
  6. defaultConfig {
  7. minSdkVersion 19
  8. targetSdkVersion 25
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. }
  16. debug {
  17. minifyEnabled false
  18. }
  19. }
  20. lintOptions {
  21. abortOnError false
  22. }
  23. testOptions {
  24. unitTests.all { t ->
  25. reports {
  26. html.enabled true
  27. }
  28. testLogging {
  29. events "PASSED", "SKIPPED", "FAILED", "standardOut", "standardError"
  30. }
  31. afterSuite { desc, result ->
  32. if (!desc.parent) { // will match the outermost suite
  33. def output = " ${result.resultType} (${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped) "
  34. def repeatLength = output.length()
  35. println '\n\n' + ('-' * repeatLength) + '\n' + output + '\n' + ('-' * repeatLength) + '\n'
  36. println "see report at file://${t.reports.html.destination}/index.html"
  37. }
  38. }
  39. }
  40. }
  41. compileOptions {
  42. sourceCompatibility JavaVersion.VERSION_1_8
  43. targetCompatibility JavaVersion.VERSION_1_8
  44. }
  45. flavorDimensions "RNN.reactNativeVersion"
  46. productFlavors {
  47. reactNative51 {
  48. dimension "RNN.reactNativeVersion"
  49. }
  50. reactNative55 {
  51. dimension "RNN.reactNativeVersion"
  52. }
  53. reactNative56 {
  54. dimension "RNN.reactNativeVersion"
  55. }
  56. }
  57. }
  58. allprojects { p ->
  59. p.afterEvaluate {
  60. p.android.compileOptions.sourceCompatibility JavaVersion.VERSION_1_8
  61. p.android.compileOptions.targetCompatibility JavaVersion.VERSION_1_8
  62. }
  63. p.repositories {
  64. maven { url "https://jitpack.io" }
  65. }
  66. }
  67. dependencies {
  68. implementation fileTree(include: ['*.jar'], dir: 'libs')
  69. implementation 'com.android.support:design:26.1.0'
  70. implementation 'com.android.support:appcompat-v7:26.1.0'
  71. implementation 'com.android.support:support-v4:26.1.0'
  72. implementation 'com.github.wix-playground:ahbottomnavigation:2.4.5'
  73. implementation 'com.github.clans:fab:1.6.4'
  74. //noinspection GradleDynamicVersion
  75. implementation 'com.facebook.react:react-native:+'
  76. // tests
  77. testImplementation 'junit:junit:4.12'
  78. testImplementation 'org.robolectric:robolectric:3.5.1'
  79. testImplementation 'org.assertj:assertj-core:3.8.0'
  80. testImplementation 'com.squareup.assertj:assertj-android:1.1.1'
  81. testImplementation 'org.mockito:mockito-core:2.13.0'
  82. }