Project is an iOS app
##Swift Style Guide
Code follows Raywenderlich style guide. Lint are used before sending pull request. SwiftLint autocorrect is used along with Tailor.
##Dependencies
Thrid party framewoks and Library are managed using Cocoapods.
- pod 'SwiftyJSON'
- pod 'Alamofire'
- github "SwiftyJSON/SwiftyJSON"
- github "Alamofire/Alamofire"
###Version Management
- Build Number willl increased for each iTunes submission
- App version will only increase on app submiting to App Store
- Each version will have build no starting from 1000
##Folder Structure and Architecture
- Each
ModuleWill have its own folder. eg -- Splash
- Onboarding
- Profile
- Constants, Generic View, Data Model, Helper etc each will have its own folder
SupportingFilesfolder will have- Bridging-Header.h
- Frameworks (Folder for 3rd paty code which does not have Cocoapods)
- AppDelegate.swift
- LaunchScreen.storyboard
- Info.plist
##Git
devwill be the semi-stable branch withtagon each stable merge. This is the branch from where IPA should be published to iTunes Test Flightmasterwill have code that are fully stable withreleaseon each merge. App store publishing should be done from this branch only.- Each branch should start with two or three letter Project Name, MileStone
<Project-Name>-<Mile-Stone>-<Module-Name>- BG-M5-Login
- Git commit should have multiline comments, where first line comment should start with tag like
- [FIXED]
- [ADDED]
- [UPDATED]
- [TEST]