sdk/appcenter-distribute-play/src/main/java/com/microsoft/appcenter/distribute/UpdateAction.java [14:30]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@SuppressWarnings({"WeakerAccess", "RedundantSuppression"})
@Retention(RetentionPolicy.SOURCE)
@IntDef({
        UpdateAction.UPDATE,
        UpdateAction.POSTPONE
})
public @interface UpdateAction {

    /**
     * Action to trigger the download of the release.
     */
    int UPDATE = DialogInterface.BUTTON_POSITIVE;

    /**
     * Action to postpone optional updates for 1 day.
     */
    int POSTPONE = DialogInterface.BUTTON_NEGATIVE;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sdk/appcenter-distribute/src/main/java/com/microsoft/appcenter/distribute/UpdateAction.java [17:33]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@SuppressWarnings({"WeakerAccess", "RedundantSuppression"})
@Retention(RetentionPolicy.SOURCE)
@IntDef({
        UpdateAction.UPDATE,
        UpdateAction.POSTPONE
})
public @interface UpdateAction {

    /**
     * Action to trigger the download of the release.
     */
    int UPDATE = DialogInterface.BUTTON_POSITIVE;

    /**
     * Action to postpone optional updates for 1 day.
     */
    int POSTPONE = DialogInterface.BUTTON_NEGATIVE;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



