-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f592a35
commit b2a8419
Showing
2 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
|
||
/** | ||
* Returns the result of ASyncCheck to UpdateChecker. | ||
* | ||
* @author Pietro Rampini ([email protected]) | ||
*/ | ||
public interface ASyncCheckResult { | ||
|
@@ -34,13 +35,20 @@ public interface ASyncCheckResult { | |
* @see <a href="https://github.com/rampo/UpdateChecker/issues/1">Issue #1</a> | ||
*/ | ||
public void multipleApksPublished(); | ||
|
||
/** | ||
* Can't download the store page. | ||
*/ | ||
public void networkError(); | ||
|
||
/** | ||
* Can't find the store page for this app. | ||
*/ | ||
public void appUnpublished(); | ||
|
||
/** | ||
* The check returns null for new version downloadble | ||
*/ | ||
public void storeError(); | ||
|
||
} |