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

outdated

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);
}
2
likes
0
pub points
24%
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

License

unknown (LICENSE)

Dependencies

http, jose

More

Packages that depend on app_store_connect_apis