From 1a42f0e33f0d81f76464621759d53823562aba6a Mon Sep 17 00:00:00 2001 From: taohebin Date: Fri, 1 Mar 2024 12:21:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20uts-progressNotification=20=E5=8E=BB?= =?UTF-8?q?=E9=99=A4Android34=E7=9A=84=E8=BF=87=E6=97=B6=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uts-progressNotification/changelog.md | 2 ++ uni_modules/uts-progressNotification/package.json | 2 +- .../utssdk/app-android/TransparentActivity.uts | 5 +++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/uni_modules/uts-progressNotification/changelog.md b/uni_modules/uts-progressNotification/changelog.md index ea93451..d326a91 100644 --- a/uni_modules/uts-progressNotification/changelog.md +++ b/uni_modules/uts-progressNotification/changelog.md @@ -1,3 +1,5 @@ +## 1.0.9(2024-02-29) +去除代码过时警告 ## 1.0.8(2023-12-21) 去除app-ios目录 ## 1.0.7(2023-12-11) diff --git a/uni_modules/uts-progressNotification/package.json b/uni_modules/uts-progressNotification/package.json index 418d197..e5f75a2 100644 --- a/uni_modules/uts-progressNotification/package.json +++ b/uni_modules/uts-progressNotification/package.json @@ -1,7 +1,7 @@ { "id": "uts-progressNotification", "displayName": "uts-progressNotification", - "version": "1.0.8", + "version": "1.0.9", "description": "uts-progressNotification", "keywords": [ "uts-progressNotification" diff --git a/uni_modules/uts-progressNotification/utssdk/app-android/TransparentActivity.uts b/uni_modules/uts-progressNotification/utssdk/app-android/TransparentActivity.uts index 283e01d..edbf05f 100644 --- a/uni_modules/uts-progressNotification/utssdk/app-android/TransparentActivity.uts +++ b/uni_modules/uts-progressNotification/utssdk/app-android/TransparentActivity.uts @@ -11,8 +11,9 @@ import { ACTION_DOWNLOAD_FINISH, ACTION_DOWNLOAD_PROGRESS } from "./constant.uts export class TransparentActivity extends Activity { constructor() { super() - } + } + @Suppress("DEPRECATION") override onCreate(savedInstanceState : Bundle | null) { super.onCreate(savedInstanceState) this.fullScreen(this) @@ -58,4 +59,4 @@ export class TransparentActivity extends Activity { } } } -} \ No newline at end of file +} -- GitLab