本文主要是介绍Flutter 和 iOS 中 .gitignore 文件内容,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Flutter 和 iOS 混编,其中 .gitignore 文件内容:
# Built application files
*.apk
*.ap_
*.aab# Files for the ART/Dalvik VM
*.dex# Java class files
*.class# Generated files
bin/
gen/
out/# Gradle files
.gradle/
build/# Local configuration file (sdk path, etc)
local.properties# Proguard folder generated by Eclipse
proguard/# Log Files
*.log#Android Studio 软件的跟人偏好配置.idea/# Android Studio Navigation editor temp files
.navigation/# Android Studio captures folder
captures/# IntelliJ
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
.idea/caches# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild# Google Services (e.g. APIs or Firebase)
google-services.json# Freeline
freeline.py
freeline/
freeline_project_description.json# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md#IOS相关 忽略#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore## Build generated
build/
DerivedData/# fluter 忽略文件
build\\ios/
ios/.symlinks/
ios/Flutter/App.framework/
ios/Flutter/Flutter.framework/
ios/ServiceDefinitions.json## Various settings
*.xcuserstate
*.DS_Store
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/CheckoutsCarthage/Build# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-controlfastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcodeiOSInjectionProject/# flutter 实时编译生成
这篇关于Flutter 和 iOS 中 .gitignore 文件内容的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!