From ad26ae7db8c2fe48f5d2ea22ce7d3c55600175d8 Mon Sep 17 00:00:00 2001 From: 18401019693 Date: Mon, 14 Aug 2023 19:16:02 +0800 Subject: [PATCH] =?UTF-8?q?6.5.4=E7=A4=BC=E7=89=A9=E5=86=A0=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yunbao/common/manager/GiftQuantityManager.java | 12 ++++++------ config.gradle | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/common/src/main/java/com/yunbao/common/manager/GiftQuantityManager.java b/common/src/main/java/com/yunbao/common/manager/GiftQuantityManager.java index cdb98a0be..2fa76feb8 100644 --- a/common/src/main/java/com/yunbao/common/manager/GiftQuantityManager.java +++ b/common/src/main/java/com/yunbao/common/manager/GiftQuantityManager.java @@ -29,13 +29,13 @@ public class GiftQuantityManager extends BaseCacheManager { List giftQuantityModels = getList(KEY_GIFT_QUANTITY, new TypeToken>() { }.getType()); if (giftQuantityModels == null || giftQuantityModels.size() == 0) { - giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("1").setFontColour("#ffffff")); - giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("10").setFontColour("#ffffff")); - giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("66").setFontColour("#ffffff")); - giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("88").setFontColour("#FA62A1")); - giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("100").setFontColour("#9B62FF")); - giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("520").setFontColour("#65BFFB")); giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("1314").setFontColour("#05F3EC")); + giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("520").setFontColour("#65BFFB")); + giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("100").setFontColour("#9B62FF")); + giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("88").setFontColour("#FA62A1")); + giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("66").setFontColour("#ffffff")); + giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("10").setFontColour("#ffffff")); + giftQuantityModels.add(new GiftQuantityModel().setGiftQuantity("1").setFontColour("#ffffff")); } return giftQuantityModels; } diff --git a/config.gradle b/config.gradle index 703370f01..95e50fc0e 100644 --- a/config.gradle +++ b/config.gradle @@ -4,7 +4,7 @@ ext { buildToolsVersion: "29.0.2", minSdkVersion : 21, targetSdkVersion : 31, - versionCode : 436, + versionCode : 437, versionName : "6.5.4" ] manifestPlaceholders = [ @@ -23,7 +23,7 @@ ext { // true表示谷歌支付 false isGooglePlay : true, //是否上报异常日志 - isUploadLog : false, + isUploadLog : true, //是否打包成插件包模式 isPluginModel : false, ]