Skip to content

8dgkim/spacetime

Repository files navigation

spacetime

  • personal superapp project

TODO

  • apply features on each screen
  • request Android permissions
    • read/write external storage not working
  • hide status bar

Sandclock

  • design on Figma
  • set behaviors and logic

Journal

  • set edit entry screen
    • decide text editor features
  • learn local storage management
  • decide file type: md
  • decide metadata to store
  • passcode protection for entries
  • sync option; but where?

Direction

  • fix negative time distance
  • fix empty TextInput behavior after some input is erased

dev log

  • 2024-03-15
    • screen: Space
      • update location in real time
      • minor fixes
  • 2024-03-14
    • branch: screen-journal
      • Android permissions not working; removed for now
        • read/write external storage...
        • need to figure out why permission is denied
      • new boxes appear on top
    • branch: screen-space
      • finished
  • 2024-03-13
    • branch: screen-journal
      • request Android permissions
      • set up rough UI (box creation)
      • set nested navigator; minor style changes
      • set Entry screen
  • 2024-03-12
    • completed Navigation; added icons; set backBehavior; modify readme
    • changed app icon(s)
    • src/screens/Time.tsx: display time; finished
    • src/screens/Direction.tsx: display time distance; finished
  • 2024-03-11: initial commit; created react-native app; initial bottomTabNavigator

notes

Step 1: Start the Metro Server

First, you will need to start Metro, the JavaScript bundler that ships with React Native.

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

# using npm
npm start

# OR using Yarn
yarn start

Step 2: Start your Application

Let Metro Bundler run in its own terminal. Open a new terminal from the root of your React Native project. Run the following command to start your Android or iOS app:

For Android

# using npm
npm run android

# OR using Yarn
yarn android

For iOS

# using npm
npm run ios

# OR using Yarn
yarn ios

If everything is set up correctly, you should see your new app running in your Android Emulator or iOS Simulator shortly provided you have set up your emulator/simulator correctly.

This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively.

Step 3: Modifying your App

Now that you have successfully run the app, let's modify it.

  1. Open App.tsx in your text editor of choice and edit some lines.

  2. For Android: Press the R key twice or select "Reload" from the Developer Menu (Ctrl + M (on Window and Linux) or Cmd ⌘ + M (on macOS)) to see your changes!

    For iOS: Hit Cmd ⌘ + R in your iOS Simulator to reload the app and see your changes!

Congratulations! 🎉

You've successfully run and modified your React Native App. 🥳

If you want to install the app manually, you can run the following in the command and download the APK file.

For Android

cd android
./gradlew assmebleRelease
# download the APK file in android/app/build/outputs/apk/release

Resources