The package creates the necessary files and routes on your server to cater for the upload of iOS .ipa files and provision the installation of those builds on iOS devices.
The package allows an integration tool to submit an iOS build to your server - where you can act as the host - the package’s service provider creates the routes that 1) handle the submission of the build which in turn create the necessary manifest files, views, and the download page required for over the air distribution for ios devices, and routes to download the build using those generated files.
Note, since iOS 9, over-the-air distribution requires the https protocol or installation will fail.
Require this package with composer:
composer require "pavankataria/laravel-ota-distribution-ios":"dev-master"
After updating composer, add the ServiceProvider to the providers array in config/app.php
PavanKataria\OtaDistributionIos\ServiceProvider::class,
Run the publish command to finish with the installation, copy the views to the views vendor directory. The routes that serve the build use these views.
php artisan vendor:publish --provider="PavanKataria\OtaDistributionIos\ServiceProvider"
For Lumen, register a different Provider in bootstrap/app.php
:
The Laravel OTA Distribution for iOS package is open-sourced software licensed under the MIT license