Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@expo/repack-app

Package Overview
Dependencies
Maintainers
26
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expo/repack-app

Repacking tool for Expo apps

  • 0.0.6
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
8.5K
decreased by-1.2%
Maintainers
26
Weekly downloads
 
Created
Source

@expo/repack-app

Repacking tool for Expo apps

Repack an onboarding app for Android

  1. Install repack-app
$ bun i
  1. Generate golden apk
$ ./scripts/create-golden-apk.sh

The golden apk will be generated at ./golden-debug.apk

  1. Have an onboarding app setup at /path/to/sdk51onboard

  2. Repack by cli

$ bun bin/cli.js -p android --source-app ./golden-debug.apk /path/to/sdk51onboard
  1. Install the app
$ adb install -r /path/to/sdk51onboard/repacked.apk

Repack an onboarding app for iOS simulators

  1. Install repack-app
$ bun i
  1. Generate golden apk
$ ./scripts/create-golden-ipa.sh iphonesimulator

The golden apk will be generated at ./golden-debug-iphonesimulator.ipa

  1. Have an onboarding app setup at /path/to/sdk51onboard

  2. Repack by cli

$ bun bin/cli.js -p ios --source-app ./golden-debug-iphonesimulator.ipa /path/to/sdk51onboard
  1. Install the app
$ mkdir tmp && unzip /path/to/sdk51onboard/repacked.ipa -d tmp && xcrun simctl install booted tmp/Payload/*.app

Repack an onboarding app for iOS devices

  1. Install repack-app
$ bun i
  1. Generate golden apk
$ ./scripts/create-golden-ipa.sh iphoneos

The golden apk will be generated at ./golden-debug-iphoneos.ipa

  1. Have an onboarding app setup at /path/to/sdk51onboard

  2. Repack by cli

$ bun bin/cli.js -p ios --source-app ./golden-debug-iphoneos.ipa /path/to/sdk51onboard
# then resign the ipa maybe through fastlane resign

# or the cli also provides a shorthand
$ bun bin/cli.js -p ios --source-app ./golden-debug-iphoneos.ipa \
    --signing-identity 'Apple Development: OOO (XXX)' \
    --provisioning-profile "$HOME/Library/MobileDevice/Provisioning Profiles/e1cf123b-d33a-2b3e-073a-c7ed52aa61bb.mobileprovision" \
    /path/to/sdk51onboard
  1. Install the app
$ xcrun devicectl device install app --verbose --device <device-id> /path/to/sdk51onboard/repacked.ipa

FAQs

Package last updated on 16 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc