An open API service indexing awesome lists of open source software.

https://github.com/shureiki/focus-leveling-mobile

Focus Leveling Mobile is an open-source mobile application inspired by the manhwa Solo Leveling. The app allows users to level up and evolve their character through a progression system inspired by RPG. The goal is to provide an engaging and interactive experience where users can track their personal growth and progress through various skill levels
https://github.com/shureiki/focus-leveling-mobile

focus focus-leveling javascript leveling manhwa react-js react-native to-portfolio

Last synced: about 1 month ago
JSON representation

Focus Leveling Mobile is an open-source mobile application inspired by the manhwa Solo Leveling. The app allows users to level up and evolve their character through a progression system inspired by RPG. The goal is to provide an engaging and interactive experience where users can track their personal growth and progress through various skill levels

Awesome Lists containing this project

README

        

# Getting Started

> **Note**: Make sure you have completed the [Set Up Your Environment](https://reactnative.dev/docs/set-up-your-environment) guide before proceeding.

## Step 1: Start Metro

First, you will need to run **Metro**, the JavaScript build tool for React Native.

To start the Metro dev server, run the following command from the root of your React Native project:

```sh
# Using npm
npm start

# OR using Yarn
yarn start

# OR using PNPM
pnpm start
```

## Step 2: Build and run your app

With Metro running, open a new terminal window/pane from the root of your React Native project, and use one of the following commands to build and run your Android or iOS app:

### Android

```sh
# Using npm
npm run android

# OR using Yarn
yarn android

# OR using PNPM
pnpm android
```

### iOS

For iOS, remember to install CocoaPods dependencies (this only needs to be run on first clone or after updating native deps).

The first time you create a new project, run the Ruby bundler to install CocoaPods itself:

```sh
bundle install
```

Then, and every time you update your native dependencies, run:

```sh
bundle exec pod install
```

For more information, please visit [CocoaPods Getting Started guide](https://guides.cocoapods.org/using/getting-started.html).

```sh
# Using npm
npm run ios

# OR using Yarn
yarn ios

# OR using pnpm
pnpm ios
```

If everything is set up correctly, you should see your new app running in the Android Emulator, iOS Simulator, or your connected device.

This is one way to run your app — you can also build it directly from Android Studio or Xcode.

## Congratulations! :tada:

You've successfully run Focus Leveling Mobile. :partying_face:

# Troubleshooting

If you're having issues getting the above steps to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page.