react-native-navigation的迁移库

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. npm-debug.log
  2. #########################
  3. # .gitignore file for Xcode5
  4. #
  5. # NB: if you are storing "built" products, this WILL NOT WORK,
  6. # and you should use a different .gitignore (or none at all)
  7. # This file is for SOURCE projects, where there are many extra
  8. # files that we want to exclude
  9. #
  10. # For updates, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
  11. # and https://gist.github.com/adamgit/3786883
  12. #########################
  13. #####
  14. # OS X temporary files that should never be committed
  15. .DS_Store
  16. *.swp
  17. *.lock
  18. profile
  19. # cocoapods specific exclusions
  20. !Podfile.lock
  21. !Manifest.lock
  22. #### Code coverage
  23. # json file which is used by Xcode plugin called PuncoverPlugin to show code coverrage informtaion in the Xcode gutter
  24. # it is generated using Slather
  25. .gutter.json
  26. ####
  27. # Xcode temporary files that should never be committed
  28. #
  29. # NB: NIB/XIB files still exist even on Storyboard projects, so we want this...
  30. *~.nib
  31. ####
  32. # Xcode build files -
  33. #
  34. # NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData"
  35. DerivedData/
  36. # NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build"
  37. build/
  38. #####
  39. # Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
  40. #
  41. # This is complicated:
  42. #
  43. # SOMETIMES you need to put this file in version control.
  44. # Apple designed it poorly - if you use "custom executables", they are
  45. # saved in this file.
  46. # 99% of projects do NOT use those, so they do NOT want to version control this file.
  47. # ..but if you're in the 1%, comment out the line "*.pbxuser"
  48. *.pbxuser
  49. *.mode1v3
  50. *.mode2v3
  51. *.perspectivev3
  52. # NB: also, whitelist the default ones, some projects need to use these
  53. !default.pbxuser
  54. !default.mode1v3
  55. !default.mode2v3
  56. !default.perspectivev3
  57. ####
  58. # Xcode 4 - semi-personal settings, often included in workspaces
  59. #
  60. # You can safely ignore the xcuserdata files - but do NOT ignore the files next to them
  61. #
  62. xcuserdata
  63. ####
  64. # XCode 4 workspaces - more detailed
  65. #
  66. # Workspaces are important! They are a core feature of Xcode - don't exclude them :)
  67. #
  68. # Workspace layout is quite spammy. For reference:
  69. #
  70. # (root)/
  71. # (project-name).xcodeproj/
  72. # project.pbxproj
  73. # project.xcworkspace/
  74. # contents.xcworkspacedata
  75. # xcuserdata/
  76. # (your name)/xcuserdatad/
  77. # xcuserdata/
  78. # (your name)/xcuserdatad/
  79. #
  80. #
  81. #
  82. # Xcode 4 workspaces - SHARED
  83. #
  84. # This is UNDOCUMENTED (google: "developer.apple.com xcshareddata" - 0 results
  85. # But if you're going to kill personal workspaces, at least keep the shared ones...
  86. #
  87. #
  88. !xcshareddata
  89. ####
  90. # XCode 4 build-schemes
  91. #
  92. # PRIVATE ones are stored inside xcuserdata
  93. !xcschemes
  94. ####
  95. # Xcode 4 - Deprecated classes
  96. #
  97. # Allegedly, if you manually "deprecate" your classes, they get moved here.
  98. #
  99. # We're using source-control, so this is a "feature" that we do not want!
  100. *.moved-aside
  101. ####
  102. # Xcode 5 - Source Control files
  103. #
  104. # Xcode 5 introduced a new file type .xccheckout. This files contains VCS metadata
  105. # and should therefore not be checked into the VCS.
  106. *.xccheckout
  107. ####
  108. # Xcode 7
  109. #
  110. # Code coverage files
  111. *.gcda
  112. *.gcno
  113. ####
  114. # Webstrom
  115. .idea
  116. ####
  117. # UNKNOWN: recommended by others, but I can't discover what these files are
  118. #
  119. # ...none. Everything is now explained.: