Không có mô tả

chase f59361a2e8 more refactors 2 năm trước cách đây
.expo-shared 2c36d63256 Created a new Expo app 3 năm trước cách đây
__tests__ c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
android c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
assets c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
coverage c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
design 5e63c689ad updated docs 3 năm trước cách đây
docs c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
ios c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
oss-attribution c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
src f59361a2e8 more refactors 2 năm trước cách đây
test c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
.env 60aa449ce1 fixed zoom issue 2 năm trước cách đây
.gitignore b291e89433 resetting repo, trying to add detox 2 năm trước cách đây
App.tsx f59361a2e8 more refactors 2 năm trước cách đây
GoogleService-Info.plist c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
app.json c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
babel.config.json c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
declarations.d.ts c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
docker-compose.yml fe6473aa91 finished landmark photos 2 năm trước cách đây
google-services.json c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
index.js c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
jest.config.js c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
jsdoc.json c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
metro.config.js f59361a2e8 more refactors 2 năm trước cách đây
package-lock.json c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
package.json c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
privacy.html c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
readme.md c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
tsconfig.json c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
tsconfig.spec.json c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
usage.html c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây
yarn-error.log bfc9e9c427 enhanced vtt 3 năm trước cách đây
yarn.lock c25c25918b starting adding mobx, changing file structure and extracting logic 2 năm trước cách đây

readme.md

Click & Push Mobile

Click&Push's mobile app, built with React Native/Typescript. Acts as a client for Click & Push's Rest API.

Downloading and running the app

Reading the React Native CLI Quickstart guide on the official docs is highly recommended, however the process is very straight forward. https://reactnative.dev/docs/environment-setup

Click & Push Mobile uses Expo's Bare workflow, so it leverages Expo's powerful CLI, but also allows for essential native modules to be added (i.e. voice recognition)

General

  1. Clone the repository
  2. Make sure you have execute permissions set on your project folder sudo chmod -R 755 atlas-mobile-ts/
  3. Install node and npm if needed https://nodejs.dev/learn/how-to-install-nodejs
  4. Run npm install -g expo-cli if you don't have the expo-cli installed already.
  5. Run npm install to install dependencies from package.json.

After these steps, you need to perform some additional platform-specific steps (note: the ios and android folders in the repo have important modifications that enable certain dependencies in the app to function properly, so its important to keep them intact when pushing and pulling the repo):

Android

  1. Set up an android device (you'll need to use a physical device in order to use the voice to text capabilities), go here if you need information on how to set up a physical device for development.
  2. Install and configure the a compatible JDK and android SDK (go here and choose React Native CLI Quickstart -> <your OS> -> Android for comprehensive instructions on how to do that).
  3. Check the atlas-mobile-ts/android/build.gradle file to make sure that compileSdkVersion and targetSdkVersion are set to the Android API level that matches your device (i.e. Android 12 = API 31)
  4. Run expo run:android in the app root folder, which will install the app on your device and run it.

iOS

  1. Set up an iOS device (you'll need to use a physical device in order to use the voice to text capabilities), go here if you need information on how to set up a physical device for development.
  2. Install and configure the Xcode and cocoapods (go here and choose React Native CLI Quickstart -> macOS -> iOS for comprehensive instructions on how to do that)
  3. It is recommended run the project using xcode, as it will provide some extra code quality checks.

For technical information about the project structure and explainations of the code, see the wiki.