app_store_connect_apis 0.3.0 copy "app_store_connect_apis: ^0.3.0" to clipboard
app_store_connect_apis: ^0.3.0 copied to clipboard

A package for the Apple App Store Connect API. It can be used to automate steps in your build pipeline.

App Store Connect #

build status pub package open issues

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

With Flutter:

flutter pub add app_store_connect_apis

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

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');

List all profiles:

List<Profile> allProfiles = await appStoreConnect.getAllProfiles();

Download profile:

Profile profile = await appStoreConnect.downloadProfile('myProfileId');

List all builds:

List<Build> allBuilds = await appStoreConnect.getAllBuilds();

Features and bugs #

Please file feature requests and bugs at the issue tracker.

2
likes
130
pub points
22%
popularity

Publisher

verified publishermethodpark.de

A package for the Apple App Store Connect API. It can be used to automate steps in your build pipeline.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

http, jose

More

Packages that depend on app_store_connect_apis