An app for Amateur Radio operations.
- Android - Play Store
- Android - Beta Testing
- iOS - App Store (coming soon)
- iOS - Beta Testing
This app is Open Source and licensed under the Mozilla Public License 2.0
First, complete the React Native - Environment Setup instructions up to just before "Creating a new application" step.
Then clone this repository and install the dependencies:
npm install
And finally, build the app for your target platform:
# iOS
(cd ios && RCT_NEW_ARCH_ENABLED=1 pod install)
npm run ios
# Android
npm run android -- --mode alphaDebug
iOS: Cmd ⌘ + D
Android: Cmd ⌘ + M (macOS) or Ctrl + M (Windows and Linux)
Icons from https://pictogrammers.com/library/mdi/
Tools
https://www.iosdev.recipes/simctl/
xcrun simctl
xcrun simctl listapps booted # List all apps
open `xcrun simctl get_app_container booted com.ham2k.polo data`/Documents
open `xcrun simctl get_app_container booted com.apple.DocumentsApp groups |grep FileProvider.LocalStorage|sed "s/group.com.apple.FileProvider.LocalStorage//g"`/File\ Provider\ Storage
-
Start with a 2048x2048 image.
-
Go to AppIcon > Image Sets, upload the image, generate and download the image set
-
On
android/app/src/main/res
replacelaunch_screen
in each subdirectory. -
On
ios/polo/Images.xcassets/LaunchScreen.imageset
replace the three versions oflaunch_screen
-
On
src/screens/StartScreen/img
replace the three versions oflaunch_screen
.
Because of a mess with our multiple build flavors, under RN 0.73 the default way of running android for development is broken
so you cannot just press a
from the metro bundler terminal to run the app on android.
Instead, run the metro bundler (npm start
) on one terminal, and run npm run android
on another to build the app.
Afterwards, just press r
on the metro bundler terminal to reload the app.
# For all platforms
rm -rf node_modules
npm install
# For android
rm -rf android/app/.cxx
(cd android && ./gradlew clean)
# For iOS
rm -rf ~/Library/Caches/CocoaPods
rm -rf ios/Pods
rm -rf ios/Podfile.lock
rm -rf ios/build
(cd ios && RCT_NEW_ARCH_ENABLED=1 pod install)
# For all platforms
watchman watch-del .
watchman watch-project .
npm start -- --reset-cache
- Go to [About this Mac > Storage > Manage > Developer]
- Delete XCode caches
https://github.com/shinydevelopment/SimulatorStatusMagic
React Native Troubleshooting page.
This is a new React Native project, bootstrapped using @react-native-community/cli
.
Note: Make sure you have completed the React Native - Environment Setup instructions till "Creating a new application" step, before proceeding.
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
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:
# using npm
npm run android
# OR using Yarn
yarn android
# 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.
To learn more about React Native, take a look at the following resources:
- React Native Website - learn more about React Native.
- Getting Started - an overview of React Native and how setup your environment.
- Learn the Basics - a guided tour of the React Native basics.