|
| 1 | +.idea/ |
| 2 | + |
1 | 3 | .vscode/* |
2 | 4 | !.vscode/extensions.json |
3 | 5 |
|
@@ -133,3 +135,136 @@ dist |
133 | 135 | .yarn/build-state.yml |
134 | 136 | .yarn/install-state.gz |
135 | 137 | .pnp.* |
| 138 | + |
| 139 | +############# |
| 140 | +# Android # |
| 141 | +############# |
| 142 | + |
| 143 | +# Gradle files |
| 144 | +.gradle/ |
| 145 | +build/ |
| 146 | + |
| 147 | +# Local configuration file (sdk path, etc) |
| 148 | +local.properties |
| 149 | + |
| 150 | +# Log/OS Files |
| 151 | +*.log |
| 152 | + |
| 153 | +# Android Studio generated files and folders |
| 154 | +captures/ |
| 155 | +.externalNativeBuild/ |
| 156 | +.cxx/ |
| 157 | +*.apk |
| 158 | +output.json |
| 159 | + |
| 160 | +# IntelliJ |
| 161 | +*.iml |
| 162 | +.idea/ |
| 163 | +misc.xml |
| 164 | +deploymentTargetDropDown.xml |
| 165 | +render.experimental.xml |
| 166 | + |
| 167 | +# Keystore files |
| 168 | +*.jks |
| 169 | +*.keystore |
| 170 | + |
| 171 | +# Google Services (e.g. APIs or Firebase) |
| 172 | +google-services.json |
| 173 | + |
| 174 | +# Android Profiling |
| 175 | +*.hprof |
| 176 | + |
| 177 | +############# |
| 178 | +# IOS # |
| 179 | +############# |
| 180 | + |
| 181 | +# Xcode |
| 182 | +# |
| 183 | +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore |
| 184 | + |
| 185 | +## User settings |
| 186 | +xcuserdata/ |
| 187 | + |
| 188 | +## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) |
| 189 | +*.xcscmblueprint |
| 190 | +*.xccheckout |
| 191 | + |
| 192 | +## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) |
| 193 | +build/ |
| 194 | +DerivedData/ |
| 195 | +*.moved-aside |
| 196 | +*.pbxuser |
| 197 | +!default.pbxuser |
| 198 | +*.mode1v3 |
| 199 | +!default.mode1v3 |
| 200 | +*.mode2v3 |
| 201 | +!default.mode2v3 |
| 202 | +*.perspectivev3 |
| 203 | +!default.perspectivev3 |
| 204 | + |
| 205 | +## Obj-C/Swift specific |
| 206 | +*.hmap |
| 207 | + |
| 208 | +## App packaging |
| 209 | +*.ipa |
| 210 | +*.dSYM.zip |
| 211 | +*.dSYM |
| 212 | + |
| 213 | +## Playgrounds |
| 214 | +timeline.xctimeline |
| 215 | +playground.xcworkspace |
| 216 | + |
| 217 | +# Swift Package Manager |
| 218 | +# |
| 219 | +# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. |
| 220 | +# Packages/ |
| 221 | +# Package.pins |
| 222 | +# Package.resolved |
| 223 | +# *.xcodeproj |
| 224 | +# |
| 225 | +# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata |
| 226 | +# hence it is not needed unless you have added a package configuration file to your project |
| 227 | +# .swiftpm |
| 228 | + |
| 229 | +.build/ |
| 230 | + |
| 231 | +# CocoaPods |
| 232 | +# |
| 233 | +# We recommend against adding the Pods directory to your .gitignore. However |
| 234 | +# you should judge for yourself, the pros and cons are mentioned at: |
| 235 | +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control |
| 236 | +# |
| 237 | +# Pods/ |
| 238 | +# |
| 239 | +# Add this line if you want to avoid checking in source code from the Xcode workspace |
| 240 | +# *.xcworkspace |
| 241 | + |
| 242 | +# Carthage |
| 243 | +# |
| 244 | +# Add this line if you want to avoid checking in source code from Carthage dependencies. |
| 245 | +# Carthage/Checkouts |
| 246 | + |
| 247 | +Carthage/Build/ |
| 248 | + |
| 249 | +# Accio dependency management |
| 250 | +Dependencies/ |
| 251 | +.accio/ |
| 252 | + |
| 253 | +# fastlane |
| 254 | +# |
| 255 | +# It is recommended to not store the screenshots in the git repo. |
| 256 | +# Instead, use fastlane to re-generate the screenshots whenever they are needed. |
| 257 | +# For more information about the recommended setup visit: |
| 258 | +# https://docs.fastlane.tools/best-practices/source-control/#source-control |
| 259 | + |
| 260 | +fastlane/report.xml |
| 261 | +fastlane/Preview.html |
| 262 | +fastlane/screenshots/**/*.png |
| 263 | +fastlane/test_output |
| 264 | + |
| 265 | +# Code Injection |
| 266 | +# |
| 267 | +# After new code Injection tools there's a generated folder /iOSInjectionProject |
| 268 | +# https://github.com/johnno1962/injectionforxcode |
| 269 | + |
| 270 | +iOSInjectionProject/ |
0 commit comments