Installer un .IPA depuis la CLI

author
Andréas Hanss · May 16, 2022
dev | 0 min
Image descriptive

La méthode originelle consiste à faire glisser l'archive .ipa dans Apple Music. C'est un peu répétitif et surtout sur android on peut taper adb install <chemin_apk>

Sur IOS on peut installer sur son Macbook ideviceinstaller

brew install ideviceinstaller

Ensuite il suffit de brancher son téléphone et de lancer la commande suivante

ideviceinstaller -i <chemin_ipa>
1
16:02:28 in stride-new-mobile-app on  main [$?] is 📦 v1.0.0 via ⬢ v16.14.2
2
➜ ideviceinstaller -i ./dev-SDK-45.ipa
3
WARNING: could not locate iTunesMetadata.plist in archive!
4
WARNING: could not locate Payload/StrideStaging.app/SC_Info/StrideStaging.sinf in archive!
5
Copying './dev-SDK-45.ipa' to device... DONE.
6
Installing 'com.stride.power.staging'
7
Install: CreatingStagingDirectory (5%)
8
Install: ExtractingPackage (15%)
9
Install: InspectingPackage (20%)
10
Install: TakingInstallLock (20%)
11
Install: PreflightingApplication (30%)
12
Install: InstallingEmbeddedProfile (30%)
13
Install: VerifyingApplication (40%)
14
Install: CreatingContainer (50%)
15
Install: InstallingApplication (60%)
16
Install: PostflightingApplication (70%)
17
Install: SandboxingApplication (80%)
18
Install: GeneratingApplicationMap (90%)
19
Install: Complete

« And voilà ! »