-
Notifications
You must be signed in to change notification settings - Fork 95
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
maning
committed
Jun 30, 2021
1 parent
4a040d0
commit 9eb4844
Showing
7 changed files
with
270 additions
and
10 deletions.
There are no files selected for viewing
Binary file not shown.
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
174 changes: 174 additions & 0 deletions
174
app/src/main/java/com/maning/mnupdateapk/bean/PgyerAppCheckResultBean.java
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 |
---|---|---|
@@ -0,0 +1,174 @@ | ||
package com.maning.mnupdateapk.bean; | ||
|
||
public class PgyerAppCheckResultBean { | ||
|
||
|
||
private int code; | ||
private String message; | ||
private Data data; | ||
|
||
public int getCode() { | ||
return code; | ||
} | ||
|
||
public void setCode(int code) { | ||
this.code = code; | ||
} | ||
|
||
public String getMessage() { | ||
return message; | ||
} | ||
|
||
public void setMessage(String message) { | ||
this.message = message; | ||
} | ||
|
||
public Data getData() { | ||
return data; | ||
} | ||
|
||
public void setData(Data data) { | ||
this.data = data; | ||
} | ||
|
||
public class Data { | ||
|
||
private String buildBuildVersion; | ||
private String forceUpdateVersion; | ||
private String forceUpdateVersionNo; | ||
private boolean needForceUpdate; | ||
private String downloadURL; | ||
private boolean buildHaveNewVersion; | ||
private String buildVersionNo; | ||
private String buildVersion; | ||
private String buildUpdateDescription; | ||
private String appKey; | ||
private String buildKey; | ||
private String buildName; | ||
private String buildIcon; | ||
private String buildFileKey; | ||
private long buildFileSize; | ||
|
||
public String getBuildBuildVersion() { | ||
return buildBuildVersion; | ||
} | ||
|
||
public void setBuildBuildVersion(String buildBuildVersion) { | ||
this.buildBuildVersion = buildBuildVersion; | ||
} | ||
|
||
public String getForceUpdateVersion() { | ||
return forceUpdateVersion; | ||
} | ||
|
||
public void setForceUpdateVersion(String forceUpdateVersion) { | ||
this.forceUpdateVersion = forceUpdateVersion; | ||
} | ||
|
||
public String getForceUpdateVersionNo() { | ||
return forceUpdateVersionNo; | ||
} | ||
|
||
public void setForceUpdateVersionNo(String forceUpdateVersionNo) { | ||
this.forceUpdateVersionNo = forceUpdateVersionNo; | ||
} | ||
|
||
public boolean isNeedForceUpdate() { | ||
return needForceUpdate; | ||
} | ||
|
||
public void setNeedForceUpdate(boolean needForceUpdate) { | ||
this.needForceUpdate = needForceUpdate; | ||
} | ||
|
||
public String getDownloadURL() { | ||
return downloadURL; | ||
} | ||
|
||
public void setDownloadURL(String downloadURL) { | ||
this.downloadURL = downloadURL; | ||
} | ||
|
||
public boolean isBuildHaveNewVersion() { | ||
return buildHaveNewVersion; | ||
} | ||
|
||
public void setBuildHaveNewVersion(boolean buildHaveNewVersion) { | ||
this.buildHaveNewVersion = buildHaveNewVersion; | ||
} | ||
|
||
public String getBuildVersionNo() { | ||
return buildVersionNo; | ||
} | ||
|
||
public void setBuildVersionNo(String buildVersionNo) { | ||
this.buildVersionNo = buildVersionNo; | ||
} | ||
|
||
public String getBuildVersion() { | ||
return buildVersion; | ||
} | ||
|
||
public void setBuildVersion(String buildVersion) { | ||
this.buildVersion = buildVersion; | ||
} | ||
|
||
public String getBuildUpdateDescription() { | ||
return buildUpdateDescription; | ||
} | ||
|
||
public void setBuildUpdateDescription(String buildUpdateDescription) { | ||
this.buildUpdateDescription = buildUpdateDescription; | ||
} | ||
|
||
public String getAppKey() { | ||
return appKey; | ||
} | ||
|
||
public void setAppKey(String appKey) { | ||
this.appKey = appKey; | ||
} | ||
|
||
public String getBuildKey() { | ||
return buildKey; | ||
} | ||
|
||
public void setBuildKey(String buildKey) { | ||
this.buildKey = buildKey; | ||
} | ||
|
||
public String getBuildName() { | ||
return buildName; | ||
} | ||
|
||
public void setBuildName(String buildName) { | ||
this.buildName = buildName; | ||
} | ||
|
||
public String getBuildIcon() { | ||
return buildIcon; | ||
} | ||
|
||
public void setBuildIcon(String buildIcon) { | ||
this.buildIcon = buildIcon; | ||
} | ||
|
||
public String getBuildFileKey() { | ||
return buildFileKey; | ||
} | ||
|
||
public void setBuildFileKey(String buildFileKey) { | ||
this.buildFileKey = buildFileKey; | ||
} | ||
|
||
public long getBuildFileSize() { | ||
return buildFileSize; | ||
} | ||
|
||
public void setBuildFileSize(long buildFileSize) { | ||
this.buildFileSize = buildFileSize; | ||
} | ||
} | ||
|
||
|
||
} |
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
2 changes: 1 addition & 1 deletion
2
...m/maning/mnupdateapk/PermissionUtils.java → ...ng/mnupdateapk/utils/PermissionUtils.java
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