.gitignore 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # ---> Objective-C
  2. # Xcode
  3. #
  4. # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
  5. ## Build generated
  6. build/
  7. DerivedData
  8. ## Various settings
  9. *.pbxuser
  10. !default.pbxuser
  11. *.mode1v3
  12. !default.mode1v3
  13. *.mode2v3
  14. !default.mode2v3
  15. *.perspectivev3
  16. !default.perspectivev3
  17. xcuserdata
  18. ## Other
  19. *.xccheckout
  20. *.moved-aside
  21. *.xcuserstate
  22. *.xcscmblueprint
  23. ## Obj-C/Swift specific
  24. *.hmap
  25. *.ipa
  26. # CocoaPods
  27. #
  28. # We recommend against adding the Pods directory to your .gitignore. However
  29. # you should judge for yourself, the pros and cons are mentioned at:
  30. # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
  31. #
  32. #Pods/
  33. # Carthage
  34. #
  35. # Add this line if you want to avoid checking in source code from Carthage dependencies.
  36. # Carthage/Checkouts
  37. Carthage/Build
  38. # ---> Android
  39. # Built application files
  40. *.apk
  41. *.ap_
  42. # Files for the Dalvik VM
  43. *.dex
  44. # Java class files
  45. *.class
  46. # Generated files
  47. bin/
  48. gen/
  49. # Gradle files
  50. .gradle/
  51. build/
  52. # Local configuration file (sdk path, etc)
  53. local.properties
  54. # Proguard folder generated by Eclipse
  55. proguard/
  56. # Log Files
  57. *.log
  58. # Android Studio Navigation editor temp files
  59. .navigation/
  60. # Android Studio captures folder
  61. captures/