Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/h3poteto/fascia-rn
Android/iOS application for fascia which is task management application
https://github.com/h3poteto/fascia-rn
react-native redux
Last synced: about 1 month ago
JSON representation
Android/iOS application for fascia which is task management application
- Host: GitHub
- URL: https://github.com/h3poteto/fascia-rn
- Owner: h3poteto
- License: mit
- Created: 2020-08-22T07:51:06.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T12:13:40.000Z (over 1 year ago)
- Last Synced: 2024-05-02T05:45:53.397Z (6 months ago)
- Topics: react-native, redux
- Language: TypeScript
- Homepage: https://fascia.io
- Size: 1.33 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![CircleCI](https://img.shields.io/circleci/build/github/h3poteto/fascia-rn/master?style=flat-square&token=1daae29740af38d98614eed5caf889dba5b8fc3e)](https://circleci.com/gh/h3poteto/fascia-rn)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/h3poteto/fascia-rn?style=flat-square)](https://github.com/h3poteto/fascia-rn/releases)
[![Dependabot](https://img.shields.io/badge/Dependabot-enabled-blue.svg?style=flat-square)](https://dependabot.com)# fascia
This application is an iOS/Android application to use fascia. Fascia is a simple task management web service: https://fascia.io# Development
This application is developed using React Native. So please install node.js in your machine.## Android
### AndroidStudio
Install AndroidStudio from https://developer.android.com/studio/install .Please select custom install, and choose these three otpions:
- Android SDK
- Android SDK Platform
- Android Virtual DeviceExport environment variables:
```
export ANDROID_HOME=$HOME/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools%
```After that, `Configure` -> `SDK Manager` -> `SDK Platform`, select and apply `Android 10.0(Q)`.
After install the SDK, please launch Android Emulator from `Configure` -> `ADV Manager`.
### Start React Native
```
$ yarn install
$ yarn run start
```Launch another shell,
```
$ yarn run android
```Then the application is compiled, and launch in Android Emulator.
## iOS
### Xcode
Install Xcode.And install pods,
```
$ yarn install
$ npx pod-install
```After that, you can launch the project from `ios/fascia.xcworkspace`, not `ios/fascia.xcodeproj`. And select simulator device.
### Start React Natvie
```
$ yarn install
$ yarn run start
```Launch another shell,
```
$ yarn run ios
```Then the application is compiled, and launch in iOS Simulator.
# License
The software is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).