open static method
Authenticates and holds the session open.
Throws StateError when no service account is configured.
Implementation
static Future<PlayReads> open({required String packageName}) async {
final client = await clientViaServiceAccount(loadPlayServiceAccount(), [
AndroidPublisherApi.androidpublisherScope,
]);
return PlayReads._(client, AndroidPublisherApi(client), packageName);
}