feat: 实现畅玩游戏更新

This commit is contained in:
juntao
2022-06-10 17:21:56 +08:00
parent 90e947b65d
commit 1eeec1c89b
13 changed files with 145 additions and 53 deletions

View File

@ -173,7 +173,11 @@ public class GameUtils {
} else if ("demo".equals(gameEntity.getDownloadStatus())) {
return context.getString(R.string.attempt);
} else {
return context.getString(R.string.download);
if (gameEntity.isVGame()) {
return context.getString(R.string.smooth);
} else {
return context.getString(R.string.download);
}
}
}