1、处理暗色背景下,无法正常展示文字和部分元素
2、隐私问题:在同意后执行oaid获取
3、修改版本号在对比度无法看清问题
This commit is contained in:
shenzuqiang 2026-05-08 10:56:59 +08:00
parent 3322ada07e
commit 8250f0b1a8
11 changed files with 31 additions and 20 deletions

View File

@ -34,7 +34,6 @@
"signingConfig": "release", "signingConfig": "release",
"targetSdkVersion": "6.0.2(22)", "targetSdkVersion": "6.0.2(22)",
"compatibleSdkVersion": "5.0.3(15)", "compatibleSdkVersion": "5.0.3(15)",
"compileSdkVersion": "6.0.2(22)",
"runtimeOS": "HarmonyOS", "runtimeOS": "HarmonyOS",
"buildOption": { "buildOption": {
"strictMode": { "strictMode": {
@ -44,12 +43,12 @@
"arkOptions": { "arkOptions": {
"buildProfileFields": { "buildProfileFields": {
"CHANNEL": "harmony", "CHANNEL": "harmony",
"BUILD_TIME": "2605071040" "BUILD_TIME": "2605081054"
} }
} }
}, },
"output": { "output": {
"artifactName": "rabbit_harmony_release_v1.0.1_2605071040" "artifactName": "rabbit_harmony_release_v1.0.0_2605081054"
} }
} }
], ],

View File

@ -2,11 +2,11 @@
* Use these variables when you tailor your ArkTS code. They must be of the const type. * Use these variables when you tailor your ArkTS code. They must be of the const type.
*/ */
export const HAR_VERSION = '0.0.1'; export const HAR_VERSION = '0.0.1';
export const BUILD_MODE_NAME = 'debug'; export const BUILD_MODE_NAME = 'release';
export const DEBUG = true; export const DEBUG = false;
export const TARGET_NAME = 'default'; export const TARGET_NAME = 'default';
export const CHANNEL = 'harmony'; export const CHANNEL = 'harmony';
export const BUILD_TIME = '2605071039'; export const BUILD_TIME = '2605081036';
/** /**
* BuildProfile Class is used only for compatibility purposes. * BuildProfile Class is used only for compatibility purposes.

View File

@ -2,11 +2,11 @@
* Use these variables when you tailor your ArkTS code. They must be of the const type. * Use these variables when you tailor your ArkTS code. They must be of the const type.
*/ */
export const HAR_VERSION = '1.0.0'; export const HAR_VERSION = '1.0.0';
export const BUILD_MODE_NAME = 'debug'; export const BUILD_MODE_NAME = 'release';
export const DEBUG = true; export const DEBUG = false;
export const TARGET_NAME = 'default'; export const TARGET_NAME = 'default';
export const CHANNEL = 'harmony'; export const CHANNEL = 'harmony';
export const BUILD_TIME = '2605071039'; export const BUILD_TIME = '2605081036';
/** /**
* BuildProfile Class is used only for compatibility purposes. * BuildProfile Class is used only for compatibility purposes.

View File

@ -2,11 +2,11 @@
* Use these variables when you tailor your ArkTS code. They must be of the const type. * Use these variables when you tailor your ArkTS code. They must be of the const type.
*/ */
export const HAR_VERSION = '0.0.1'; export const HAR_VERSION = '0.0.1';
export const BUILD_MODE_NAME = 'debug'; export const BUILD_MODE_NAME = 'release';
export const DEBUG = true; export const DEBUG = false;
export const TARGET_NAME = 'default'; export const TARGET_NAME = 'default';
export const CHANNEL = 'harmony'; export const CHANNEL = 'harmony';
export const BUILD_TIME = '2605071039'; export const BUILD_TIME = '2605081036';
/** /**
* BuildProfile Class is used only for compatibility purposes. * BuildProfile Class is used only for compatibility purposes.

View File

@ -346,6 +346,7 @@ export struct FeedbackLayout {
} }
.width('100%') .width('100%')
.height('100%') .height('100%')
.backgroundColor('#FFFFFFFF')
.alignContent(Alignment.Bottom) .alignContent(Alignment.Bottom)
} }
.hideTitleBar(true) .hideTitleBar(true)

View File

@ -183,6 +183,7 @@ export struct LongImageLayout {
.zIndex(100) .zIndex(100)
} }
} }
.backgroundColor('#FFFFFF')
} }
.hideTitleBar(true) .hideTitleBar(true)
} }

View File

@ -41,6 +41,7 @@ export struct WebLayout {
} }
.width('100%') .width('100%')
.height('100%') .height('100%')
.backgroundColor('#FFFFFFFF')
} }
.onReady((context: NavDestinationContext) => { .onReady((context: NavDestinationContext) => {
this.urlParams = context.pathInfo.param as WebParams; this.urlParams = context.pathInfo.param as WebParams;

View File

@ -26,7 +26,7 @@
{ {
"name": "default", "name": "default",
"output": { "output": {
"artifactName": "rabbit_harmony_v1.0.1_26571040" "artifactName": "rabbit_harmony_v1.0.0_26581054"
} }
}, },
{ {

View File

@ -75,10 +75,6 @@ struct SplashScreenPage {
aboutToAppear() { aboutToAppear() {
Logger.info('Rabbit_SplashScreenPage', '启动页加载完成'); Logger.info('Rabbit_SplashScreenPage', '启动页加载完成');
getOAID().then((oaid: string) => {
AppStorage.setOrCreate<string>(DEVICE_OAID, oaid);
});
if(AppStorage.get<boolean>(IS_KV_STORE_INIT_FINISHED)){ if(AppStorage.get<boolean>(IS_KV_STORE_INIT_FINISHED)){
this.showAgreement() this.showAgreement()
}else{ }else{
@ -106,6 +102,10 @@ struct SplashScreenPage {
// 同意协议后执行 // 同意协议后执行
agreeRun() { agreeRun() {
getOAID().then((oaid: string) => {
AppStorage.setOrCreate<string>(DEVICE_OAID, oaid);
});
this.hasAgreed = true; this.hasAgreed = true;
this.startFlow(); this.startFlow();
} }

View File

@ -259,8 +259,9 @@ export struct HomeComponent {
Text(item.text) Text(item.text)
.width('100%') .width('100%')
.fontSize(12) .fontSize(12)
.fontColor('#000000')
.margin({ top: 8}) .margin({ top: 8})
.backgroundColor($r('app.color.normal_background')) .backgroundColor('#FFFFFF')
.textAlign(TextAlign.Center) .textAlign(TextAlign.Center)
.borderRadius(12) .borderRadius(12)
} }
@ -314,6 +315,7 @@ export struct HomeComponent {
.width('100%') .width('100%')
.fontSize(12) .fontSize(12)
.textAlign(TextAlign.Start) .textAlign(TextAlign.Start)
.fontColor('#000000')
.margin({ top: 8}) .margin({ top: 8})
.borderRadius(12) .borderRadius(12)
@ -321,6 +323,7 @@ export struct HomeComponent {
.width('100%') .width('100%')
.fontSize(12) .fontSize(12)
.textAlign(TextAlign.Start) .textAlign(TextAlign.Start)
.fontColor('#000000')
.margin({ top: 8}) .margin({ top: 8})
.borderRadius(12) .borderRadius(12)
} }
@ -375,6 +378,7 @@ export struct HomeComponent {
Text(item.name) Text(item.name)
.width('100%') .width('100%')
.fontSize(12) .fontSize(12)
.fontColor('#000000')
.textAlign(TextAlign.Start) .textAlign(TextAlign.Start)
.margin({ top: 8}) .margin({ top: 8})
.borderRadius(12) .borderRadius(12)
@ -382,6 +386,7 @@ export struct HomeComponent {
Text(item.resize) Text(item.resize)
.width('100%') .width('100%')
.fontSize(12) .fontSize(12)
.fontColor('#000000')
.textAlign(TextAlign.Start) .textAlign(TextAlign.Start)
.margin({ top: 8}) .margin({ top: 8})
.borderRadius(12) .borderRadius(12)
@ -439,12 +444,14 @@ export struct HomeComponent {
Text(item.name) Text(item.name)
.width('100%') .width('100%')
.fontSize(12) .fontSize(12)
.fontColor('#000000')
.textAlign(TextAlign.Center) .textAlign(TextAlign.Center)
.borderRadius(12) .borderRadius(12)
Text(item.resize) Text(item.resize)
.width('100%') .width('100%')
.fontSize(12) .fontSize(12)
.fontColor('#000000')
.textAlign(TextAlign.Center) .textAlign(TextAlign.Center)
.margin({ top: 4}) .margin({ top: 4})
.borderRadius(12) .borderRadius(12)
@ -516,6 +523,7 @@ export struct HomeComponent {
Text(item.name) Text(item.name)
.width('100%') .width('100%')
.fontSize(12) .fontSize(12)
.fontColor('#000000')
.margin({ top: 8}) .margin({ top: 8})
.backgroundColor($r('app.color.normal_background')) .backgroundColor($r('app.color.normal_background'))
.textAlign(TextAlign.Center) .textAlign(TextAlign.Center)

View File

@ -218,7 +218,7 @@ export struct MineComponent {
}) { }) {
Text(BuildProfile.DEBUG?'V' + this.appVersion + '-' + 'debug' + '-' + this.buildTime + ' ' : 'V' + this.appVersion + ' ') Text(BuildProfile.DEBUG?'V' + this.appVersion + '-' + 'debug' + '-' + this.buildTime + ' ' : 'V' + this.appVersion + ' ')
.fontSize(14) .fontSize(14)
.fontColor('#4d767676') .fontColor('#FF767676')
.textAlign(TextAlign.Center) .textAlign(TextAlign.Center)
.borderRadius(12) .borderRadius(12)
.padding({ right: 4, top: 4 }) .padding({ right: 4, top: 4 })
@ -226,7 +226,7 @@ export struct MineComponent {
}else{ }else{
Text(BuildProfile.DEBUG?'V' + this.appVersion + '-' + 'debug' + '-' + this.buildTime : 'V' + this.appVersion) Text(BuildProfile.DEBUG?'V' + this.appVersion + '-' + 'debug' + '-' + this.buildTime : 'V' + this.appVersion)
.fontSize(14) .fontSize(14)
.fontColor('#4d767676') .fontColor('#FF767676')
.textAlign(TextAlign.Center) .textAlign(TextAlign.Center)
.borderRadius(12) .borderRadius(12)
} }
@ -297,6 +297,7 @@ export struct MineComponent {
.alignContent(Alignment.TopStart) .alignContent(Alignment.TopStart)
.width('100%') .width('100%')
.height('100%') .height('100%')
.backgroundColor('#FFF9F9F9')
} }
.hideTitleBar(true) .hideTitleBar(true)
} }