diff options
| author | hc <haocheng.xie@respiree.com> | 2026-04-10 17:39:12 +0800 |
|---|---|---|
| committer | hc <haocheng.xie@respiree.com> | 2026-04-10 17:39:22 +0800 |
| commit | e4fb9966e762852bf17f21c8406501d42fae0b61 (patch) | |
| tree | 658bbdba977ff7846a17ee94b8ed6b676f6ce9dd /.gitignore | |
Initial commit: iHealth BLE scanner app with patched SDK v1.5.0
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..de99955 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,75 @@ | |||
| 1 | # OSX | ||
| 2 | # | ||
| 3 | .DS_Store | ||
| 4 | |||
| 5 | # Xcode | ||
| 6 | # | ||
| 7 | build/ | ||
| 8 | *.pbxuser | ||
| 9 | !default.pbxuser | ||
| 10 | *.mode1v3 | ||
| 11 | !default.mode1v3 | ||
| 12 | *.mode2v3 | ||
| 13 | !default.mode2v3 | ||
| 14 | *.perspectivev3 | ||
| 15 | !default.perspectivev3 | ||
| 16 | xcuserdata | ||
| 17 | *.xccheckout | ||
| 18 | *.moved-aside | ||
| 19 | DerivedData | ||
| 20 | *.hmap | ||
| 21 | *.ipa | ||
| 22 | *.xcuserstate | ||
| 23 | **/.xcode.env.local | ||
| 24 | |||
| 25 | # Android/IntelliJ | ||
| 26 | # | ||
| 27 | build/ | ||
| 28 | .idea | ||
| 29 | .gradle | ||
| 30 | local.properties | ||
| 31 | *.iml | ||
| 32 | *.hprof | ||
| 33 | .cxx/ | ||
| 34 | *.keystore | ||
| 35 | !debug.keystore | ||
| 36 | .kotlin/ | ||
| 37 | |||
| 38 | # node.js | ||
| 39 | # | ||
| 40 | node_modules/ | ||
| 41 | npm-debug.log | ||
| 42 | yarn-error.log | ||
| 43 | |||
| 44 | # fastlane | ||
| 45 | # | ||
| 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the | ||
| 47 | # screenshots whenever they are needed. | ||
| 48 | # For more information about the recommended setup visit: | ||
| 49 | # https://docs.fastlane.tools/best-practices/source-control/ | ||
| 50 | |||
| 51 | **/fastlane/report.xml | ||
| 52 | **/fastlane/Preview.html | ||
| 53 | **/fastlane/screenshots | ||
| 54 | **/fastlane/test_output | ||
| 55 | |||
| 56 | # Bundle artifact | ||
| 57 | *.jsbundle | ||
| 58 | |||
| 59 | # Ruby / CocoaPods | ||
| 60 | **/Pods/ | ||
| 61 | /vendor/bundle/ | ||
| 62 | |||
| 63 | # Temporary files created by Metro to check the health of the file watcher | ||
| 64 | .metro-health-check* | ||
| 65 | |||
| 66 | # testing | ||
| 67 | /coverage | ||
| 68 | |||
| 69 | # Yarn | ||
| 70 | .yarn/* | ||
| 71 | !.yarn/patches | ||
| 72 | !.yarn/plugins | ||
| 73 | !.yarn/releases | ||
| 74 | !.yarn/sdks | ||
| 75 | !.yarn/versions | ||
