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>
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>
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
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