Skip to content

Commit

Permalink
Merge branch 'feature/distribute-play-implementation' into feature/di…
Browse files Browse the repository at this point in the history
…stribute-play-app
  • Loading branch information
Anastasia Kubova committed Jul 14, 2020
2 parents 52304d2 + e5ea0b7 commit eb0e2eb
Showing 1 changed file with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,17 @@ public static AppCenterFuture<Void> setEnabled(boolean enabled) {
}

/**
* Implements {@link #setInstallUrl(String)}.
* Change the base URL opened in the browser to get update token from user login information.
*
* @param installUrl install base URL.
*/
public static void setInstallUrl(String installUrl) {
}

/**
* Implements {@link #setApiUrl(String)}}.
* Change the base URL used to make API calls.
*
* @param apiUrl API base URL.
*/
public static void setApiUrl(String apiUrl) {
}
Expand Down Expand Up @@ -105,7 +109,9 @@ public static void setListener(DistributeListener listener) {
}

/**
* Implements {@link #setEnabledForDebuggableBuild(boolean)}.
* Set whether the distribute service can be used within a debuggable build.
*
* @param enabled <code>true</code> to enable, <code>false</code> to disable.
*/
public static void setEnabledForDebuggableBuild(boolean enabled) {
}
Expand All @@ -121,7 +127,9 @@ public static void notifyUpdateAction(@UpdateAction int updateAction) {
}

/**
* Implements {@link #checkForUpdate()}.
* Trigger a check for update.
* If the application is in background, it will delay the check for update until the application is in foreground.
* This call has no effect if there is already an ongoing check.
*/
public static void checkForUpdate() {
}
Expand Down

0 comments on commit eb0e2eb

Please sign in to comment.