This commit is contained in:
2026-04-09 18:37:43 +08:00
parent c010c5eebd
commit 201f1fdc59
4 changed files with 10 additions and 27 deletions

View File

@@ -2,18 +2,18 @@ apply plugin: 'com.android.application'
android {
signingConfigs { release {
storeFile file('../keystore/gamehall.keystore')
storePassword 'tswl2015'
keyPassword 'tswl2015'
storeFile file('G:\\Works\\YouleApp\\android\\tsgame_android\\keystore\\daoqi_game_1.keystore')
storePassword 'tswl0791'
keyPassword 'tswl0791'
keyAlias = 'gamehall'
v1SigningEnabled true
v2SigningEnabled true
}
debug {
storeFile file('../keystore/gamehall.keystore')
storePassword 'tswl2015'
keyPassword 'tswl2015'
storeFile file('G:\\Works\\YouleApp\\android\\tsgame_android\\keystore\\daoqi_game_1.keystore')
storePassword 'tswl0791'
keyPassword 'tswl0791'
keyAlias = 'gamehall'
v1SigningEnabled true
v2SigningEnabled true
@@ -24,7 +24,7 @@ android {
buildToolsVersion '33.0.0'
defaultConfig {
applicationId "com.jx.jyhd"
applicationId "com.daoqi.lobby"
minSdkVersion 21
targetSdkVersion 32
versionCode= 3

View File

@@ -1,18 +0,0 @@
{
"version": 2,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "com.jx.jyhd",
"variantName": "processReleaseResources",
"elements": [
{
"type": "SINGLE",
"filters": [],
"versionCode": 3,
"versionName": "3.6.3",
"outputFile": "app-release.apk"
}
]
}

View File

@@ -124,7 +124,8 @@ public class WeChatShareUtil {
// 创建网页消息对象
WXWebpageObject webpage = new WXWebpageObject();
webpage.webpageUrl = webpageUrl;
String timestampUrl = webpageUrl + (webpageUrl.contains("?") ? "&" : "?") + "t=" + System.currentTimeMillis();
webpage.webpageUrl = timestampUrl;
// 创建多媒体消息
WXMediaMessage msg = new WXMediaMessage(webpage);
@@ -133,7 +134,7 @@ public class WeChatShareUtil {
// 设置缩略图 - 使用应用的启动图标 logo6 而不是 ic_launcher
Bitmap thumbBmp = BitmapFactory.decodeResource(mContext.getResources(),
mContext.getResources().getIdentifier("logo6", "drawable", mContext.getPackageName()));
com.jx.jyhd.R.drawable.logo6);
// 如果找不到logo6则退回到使用ic_launcher
if (thumbBmp == null) {