Recently published a new version of the expo [react-navigation-visualizer](www.npmjs.com/package/@bam...) plugin, which shows your navigation state illustrated as a stack!
What's new:
- Navigation history
- Screenshot of the navigation states
- Navigation params display
Feedback is welcome!
Posts by
β Done. App delivery, AppCenter-style β minus the lock-in.
3/ π iOS needs a manifest.plist that points to your .ipa β generate it via Fastlane using bundleId, version, and url path.
4/ π― Build a small front-end with 2 download buttons:
- Android: direct .apk link
- iOS: opens itms-services://?action=download-manifest&url=<your_plist_url>
2/ π Use Fastlane to upload your builds (no EAS here β youβre in charge)
Too lazy to dive into Ruby? Same. Hereβs the hack: use sh to run shell and just use curl
def upload(build_path, url)
sh("curl -X PUT -T '#{build_path}' '#{url}'")
end
Rebuilding AppCenter to deploy apps (self-hosted edition)
With AppCenter gone, we needed a replacement β and it turns out, DIY is surprisingly simple:
1/ ποΈ Host your .apk and .ipa somewhere (S3 or whatever works)