react-native-navigation的迁移库

build.gradle 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. apply plugin: 'com.android.library'
  2. apply from: '../prepare-robolectric.gradle'
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion "25.0.2"
  6. defaultConfig {
  7. minSdkVersion 16
  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. }
  42. task unitTest(dependsOn: 'testDebugUnitTest') {}
  43. dependencies {
  44. compile fileTree(include: ['*.jar'], dir: 'libs')
  45. compile 'com.android.support:design:25.1.1'
  46. compile 'com.android.support:appcompat-v7:25.1.1'
  47. compile "com.android.support:support-v4:25.1.1"
  48. // node_modules
  49. compile 'com.facebook.react:react-native:+'
  50. // third party
  51. compile 'com.aurelhubert:ahbottomnavigation:1.3.3'
  52. compile 'com.balysv.materialmenu:material-menu-toolbar:1.5.4'
  53. // tests
  54. testCompile 'junit:junit:4.12'
  55. testCompile 'org.robolectric:robolectric:3.3'
  56. testCompile 'org.assertj:assertj-core:2.5.0'
  57. testCompile 'org.mockito:mockito-core:2.7.5'
  58. }