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.

example/example.dart

import 'package:app_store_connect_apis/app_store_connect.dart';

Future<void> main(List<String> args) async {
  var appStoreConnect =
      AppStoreConnect('987-654-321', 'A123456', '/path/to/key.p8');

  var profiles = await appStoreConnect.getAllProfiles();
  print(profiles);

  var myProfile = await appStoreConnect.downloadProfile('profileId');
  print(myProfile);

  var myBuilds = await appStoreConnect.getAllBuilds();
  print(myBuilds);
}
2
likes
130
pub points
28%
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