diff --git a/uni_modules/uts-progressNotification/changelog.md b/uni_modules/uts-progressNotification/changelog.md index ea934510d69aa64defc580393b95246cad81abd2..d326a9153a9f3de560e50e9b1ef24c075942e9e4 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 418d197975bd203d948da900c1e902b38f9c650b..e5f75a2cebdee171550ea9583a083d75344b912b 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 283e01db3035765dd294f3f40e0d9f52e037da08..edbf05fa90416de330237975fe1f33dfd4f63a36 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 +}