Cephalon Navis is an Android app inspired by Warframe Hub. Navis for short uses the WarframeStat.us API to display as much useful and necessary information to help you as you travel the solar system without leaving your game.
- Display Warframe news
- in-game events
- Darvo daily deal of the day
- Baro Ki'Teer in-game information
- Sorties
- Void Fissures and Void storms
- invasions, including Fomorian and Razorback construction progress
- Cetus and Earth Day/Night cycle
- Orb vallis Warm/Cold cycle
- Open world syndicate bounties
- Nightwaves
- Links to useful guides for new players to learn how to fish and find open world maps
- Notifications (mostly done)
- supports PC, PS4, Xbox and Nintendo Switch
On Mac/Linux/WSL
keytool -genkey -v -keystore ~/key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias key
On Windows
keytool -genkey -v -keystore c:/Users/USER_NAME/key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias key
If you change your keystore alies make sure to to replace KeyAlia, under android/app/build.gradle, with your own custom alias.
Once your Keystore has been generated store your keystore.jks under the android folder. Then set an environment variable TENNO_CIPHER
as the password for your generated keystore.jks
iOS apps require a certifcate from Apple in order to be signed and installed on a physical device.
Best to let Google teach you this one https://firebase.google.com/docs/flutter/setup#configure_an_android_app
To build Navis need to install Flutter from the link below and follow all the instructions needed to get it running for your desired device then simple run:
flutter pub get
flutter build apk/ios/ipa
flutter install
Pick the one for your specfic device, apk builds a fat apk, ios builds an .app
for iOS, and ipa builds an archived version used for the app store
Optionally flutter build apk --target-platform=android-arm64
or flutter build apk --target-platform=android-arm
will build an apk with just arm64 or arm libs, this is good as fat apks are much larger and include libs for x86, arm64, and arm.
Make sure that you follow all the instructions and everything should run smoothly, unless there's a bug in which case report issues here so that they may be fixed.