@mob.dev/expo-template v1.2.0
All of the changes by version can be found in CHANGELOG.
Expo development environment on your machine
Install globally on your device expo cli
npm install -g expo-cliexpo init -t '@mob.dev/expo-template' --no-installcd Your_Project_NameFolder: root
api: Generated files from backend. Typescript types and hooks to call apisrc: Source folder that contains whole app logic and UIassets:icons: svg files that are transformed into React Native componentsimages: png files
components- done by standard of atomic design:atoms: smaller UI components that do one thingmolecules: UI components that consist of multiple atoms
constants: some constants used throughout the apphelpers: some files that help in the apphooks: custom hooks that can be used throughout the appnavigation: configuration for navigationscreens: screens, used in navigation, and they contain logic and layoutstore: redux store for global storage, also is persisted for offline storage. For persisting data it uses secure storage
Install packages
yarnFind files that start with this word and replace it with . (dot)
replaceThisWordWithDot-To start local metro server with JS code bundled
yarn start(if you don't start it, one of the yarn ios/android commands will do it for you before installing the app to your device/simulator)
yarn androidRunning it on your device as a standalone app, connect it with a cable, make sure you have ADB installed
yarn android:installToDeviceyarn iosRunning the app on device
yarn ios:installReleaseToDeviceTriggering command to create development build in Expo EAS services that can be installed on simulator
yarn ios:createDevelopmentBuildForSimulatorIn this project going forward we will use conventional commits as a new standard.
In addition we will follow semantic versioning.
This is so we can easily generate new changelog.
Commiting:git commit: This will run CLI interface to easily create commit messages that follow conventional commits logiccommitizen: It will guide you and prompt you options to choose from so you follow the standard. At the end it will open the editor in terminal with your commit message. All you have to do is type in:qto exit and save
Generate CHANGELOG.mdfrom your commits that follow conventional standard:- Library used commit-and-tag-version which is a fork of standard-version:
- To bump up the version in package.json version of this repo and generate changelog:
yarn release:patch: (0.0.X)yarn release:minor: (0.X.0)yarn release:major: (X.0.0)
Generate CHANGELOG.mdfrom your commits that follow conventional standard:- Library used commit-and-tag-version which is a fork of standard-version:
- To bump up the version in package.json version of this repo and generate changelog:
yarn release:patch: (0.0.X)yarn release:minor: (0.X.0)yarn release:major: (X.0.0)
ESlintPrettierHusky
Android
Creates APK file in expo
yarn android:releaseToExpoCreates AAB file
yarn android:prepareForGooglePlay