Skip to content

Instantly share code, notes, and snippets.

@julioz
Created April 27, 2016 00:42
Show Gist options
  • Save julioz/95fef0cbdc09e88663f538240bd8f2ef to your computer and use it in GitHub Desktop.
Save julioz/95fef0cbdc09e88663f538240bd8f2ef to your computer and use it in GitHub Desktop.
Fórmula de um AppEdit
AndroidPublisher publisher = ...
Edits edits = publisher.edits();
// insert, get, delete
AppEdit appEdit = edits.insert(PACKAGE, null).execute();
String transactionId = appEdit.getId();
...
...
edits.validate(PACKAGE, transactionId).execute();
edits.commit(PACKAGE, transactionId).execute();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment