Last updated:
0 purchases
app store connect apis
App Store Connect #
Dart package for the Apple App Store Connect API.
It is build to improve the automation of the delivery and deployment process for Flutter / cross-platform apps and is used for the Publisher package.
Following functionality is supported:
List all provisioning profiles
Download a specific provisioning profile
Installation #
With Dart:
dart pub add app_store_connect_apis
copied to clipboard
With Flutter:
flutter pub add app_store_connect_apis
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
app_store_connect_apis: ^0.1.0
copied to clipboard
Usage #
To get your authentication credentials, please follow the documentation by Apple.
Initialize the AppStoreConnect class:
AppStoreConnect('987-654-321', 'A123456', '/path/to/key.p8');
copied to clipboard
List all profiles:
List<Profile> allProfiles = await appStoreConnect.getAllProfiles();
copied to clipboard
Download profile:
Profile profile = await appStoreConnect.downloadProfile('myProfileId');
copied to clipboard
List all builds:
List<Build> allBuilds = await appStoreConnect.getAllBuilds();
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.