Advertisement Β· 728 Γ— 90

Posts by

Video

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!

7 months ago 8 5 1 0

βœ… Done. App delivery, AppCenter-style β€” minus the lock-in.

11 months ago 0 0 0 0

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>

11 months ago 0 0 1 0

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

11 months ago 0 0 1 0

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)

11 months ago 0 0 1 0