添加log.

This commit is contained in:
2025-12-13 01:26:07 +08:00
parent b915e9d044
commit 724046c9c6
3 changed files with 3 additions and 2 deletions

View File

@@ -161,7 +161,7 @@ public class CommonAppContext extends MultiDexApplication implements Applicatio
//设置mqtt环境 false 测试环境 true 正式环境
// ExternalResConstants.INSTANCE.setIS_MQTT_RELEASE(false);
//设置http环境 false 测试环境 true 正式环境
ExternalResConstants.INSTANCE.setIS_HTTP_RELEASE(false);
ExternalResConstants.INSTANCE.setIS_HTTP_RELEASE(true);
currentEnvironment = ExternalResConstants.INSTANCE.HTTP_PATH();
initialization();

View File

@@ -422,6 +422,7 @@ public class AvatarFrameView extends FrameLayout {
mainHandler.post(() -> {
// 检查是否已销毁
if (file.exists()) {
LogUtils.e("有缓存:"+file.exists()+"===="+file.getAbsolutePath());
playMp4File(file);
} else {
LogUtils.w(TAG, "有缓存2222222222222");

View File

@@ -117,7 +117,7 @@ android {
def versionName = variant.versionName
def versionCode = variant.versionCode
// 获取当前时间戳格式yyyyMMddHHmmss
def buildTimes = new Date().format("yyyy-MM-dd-HH")
def buildTimes = new Date().format("yyyy-MM-dd-HH-mm")
def fileName = "羽声_${versionName}_${versionCode}_${buildTimes}.apk"
output.outputFileName = fileName
}