From 639fdf1760c480f1d86aa38b65a1b2762e095a96 Mon Sep 17 00:00:00 2001 From: fengge <844143714@qq.com> Date: Wed, 1 Apr 2026 22:23:47 +0800 Subject: [PATCH] 123 --- .gitignore | 3 - .idea/StandAPP-Project.iml | 9 - .idea/caches/deviceStreaming.xml | 1502 ----------------- {StandAPP/.idea => .idea}/compiler.xml | 0 .idea/deploymentTargetSelector.xml | 10 +- .idea/gradle.xml | 6 +- .idea/misc.xml | 6 +- .idea/modules.xml | 8 - .idea/vcs.xml | 6 - StandAPP/.gitignore | 15 - StandAPP/.idea/.gitignore | 3 - StandAPP/.idea/AndroidProjectSystem.xml | 6 - StandAPP/.idea/deploymentTargetSelector.xml | 18 - StandAPP/.idea/deviceManager.xml | 13 - StandAPP/.idea/gradle.xml | 18 - StandAPP/.idea/misc.xml | 9 - StandAPP/.idea/runConfigurations.xml | 17 - {StandAPP/app => app}/.gitignore | 0 {StandAPP/app => app}/build.gradle.kts | 0 {StandAPP/app => app}/proguard-rules.pro | 0 .../stand/standapp/ExampleInstrumentedTest.kt | 0 .../app => app}/src/main/AndroidManifest.xml | 0 .../src/main/assets/print_demo.html | 0 .../com/stand/standapp/AndroidInterface.kt | 0 .../main/java/com/stand/standapp/AppConfig.kt | 0 .../java/com/stand/standapp/LoginActivity.kt | 0 .../java/com/stand/standapp/MainActivity.kt | 0 .../java/com/stand/standapp/UpdateManager.kt | 0 .../java/com/stand/standapp/ui/theme/Color.kt | 0 .../java/com/stand/standapp/ui/theme/Theme.kt | 0 .../java/com/stand/standapp/ui/theme/Type.kt | 0 .../src/main/res/drawable/bg_login.xml | 0 .../res/drawable/ic_launcher_background.xml | 0 .../res/drawable/ic_launcher_foreground.xml | 0 .../main/res/drawable/shape_button_login.xml | 0 .../src/main/res/drawable/shape_edit_text.xml | 0 .../src/main/res/drawable/shape_login_box.xml | 0 .../src/main/res/layout/activity_login.xml | 0 .../src/main/res/layout/activity_main.xml | 0 .../src/main/res/layout/dialog_update.xml | 0 .../res/mipmap-anydpi-v26/ic_launcher.xml | 0 .../mipmap-anydpi-v26/ic_launcher_round.xml | 0 .../src/main/res/mipmap-hdpi/ic_launcher.webp | Bin .../res/mipmap-hdpi/ic_launcher_round.webp | Bin .../src/main/res/mipmap-mdpi/ic_launcher.webp | Bin .../res/mipmap-mdpi/ic_launcher_round.webp | Bin .../main/res/mipmap-xhdpi/ic_launcher.webp | Bin .../res/mipmap-xhdpi/ic_launcher_round.webp | Bin .../main/res/mipmap-xxhdpi/ic_launcher.webp | Bin .../res/mipmap-xxhdpi/ic_launcher_round.webp | Bin .../main/res/mipmap-xxxhdpi/ic_launcher.webp | Bin .../res/mipmap-xxxhdpi/ic_launcher_round.webp | Bin .../src/main/res/values/colors.xml | 0 .../src/main/res/values/strings.xml | 0 .../src/main/res/values/themes.xml | 0 .../src/main/res/xml/backup_rules.xml | 0 .../main/res/xml/data_extraction_rules.xml | 0 .../src/main/res/xml/file_paths.xml | 0 .../main/res/xml/network_security_config.xml | 0 .../com/stand/standapp/ExampleUnitTest.kt | 0 StandAPP/build.gradle.kts => build.gradle.kts | 0 .../gradle.properties => gradle.properties | 0 .../gradle-daemon-jvm.properties | 0 .../gradle => gradle}/libs.versions.toml | 0 .../wrapper/gradle-wrapper.jar | Bin .../wrapper/gradle-wrapper.properties | 0 StandAPP/gradlew => gradlew | 0 StandAPP/gradlew.bat => gradlew.bat | 0 StandAPP/img.png => img.png | Bin {StandAPP/key => key}/StandAPP | Bin ...settings.gradle.kts => settings.gradle.kts | 0 71 files changed, 16 insertions(+), 1633 deletions(-) delete mode 100644 .idea/StandAPP-Project.iml delete mode 100644 .idea/caches/deviceStreaming.xml rename {StandAPP/.idea => .idea}/compiler.xml (100%) delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml delete mode 100644 StandAPP/.gitignore delete mode 100644 StandAPP/.idea/.gitignore delete mode 100644 StandAPP/.idea/AndroidProjectSystem.xml delete mode 100644 StandAPP/.idea/deploymentTargetSelector.xml delete mode 100644 StandAPP/.idea/deviceManager.xml delete mode 100644 StandAPP/.idea/gradle.xml delete mode 100644 StandAPP/.idea/misc.xml delete mode 100644 StandAPP/.idea/runConfigurations.xml rename {StandAPP/app => app}/.gitignore (100%) rename {StandAPP/app => app}/build.gradle.kts (100%) rename {StandAPP/app => app}/proguard-rules.pro (100%) rename {StandAPP/app => app}/src/androidTest/java/com/stand/standapp/ExampleInstrumentedTest.kt (100%) rename {StandAPP/app => app}/src/main/AndroidManifest.xml (100%) rename {StandAPP/app => app}/src/main/assets/print_demo.html (100%) rename {StandAPP/app => app}/src/main/java/com/stand/standapp/AndroidInterface.kt (100%) rename {StandAPP/app => app}/src/main/java/com/stand/standapp/AppConfig.kt (100%) rename {StandAPP/app => app}/src/main/java/com/stand/standapp/LoginActivity.kt (100%) rename {StandAPP/app => app}/src/main/java/com/stand/standapp/MainActivity.kt (100%) rename {StandAPP/app => app}/src/main/java/com/stand/standapp/UpdateManager.kt (100%) rename {StandAPP/app => app}/src/main/java/com/stand/standapp/ui/theme/Color.kt (100%) rename {StandAPP/app => app}/src/main/java/com/stand/standapp/ui/theme/Theme.kt (100%) rename {StandAPP/app => app}/src/main/java/com/stand/standapp/ui/theme/Type.kt (100%) rename {StandAPP/app => app}/src/main/res/drawable/bg_login.xml (100%) rename {StandAPP/app => app}/src/main/res/drawable/ic_launcher_background.xml (100%) rename {StandAPP/app => app}/src/main/res/drawable/ic_launcher_foreground.xml (100%) rename {StandAPP/app => app}/src/main/res/drawable/shape_button_login.xml (100%) rename {StandAPP/app => app}/src/main/res/drawable/shape_edit_text.xml (100%) rename {StandAPP/app => app}/src/main/res/drawable/shape_login_box.xml (100%) rename {StandAPP/app => app}/src/main/res/layout/activity_login.xml (100%) rename {StandAPP/app => app}/src/main/res/layout/activity_main.xml (100%) rename {StandAPP/app => app}/src/main/res/layout/dialog_update.xml (100%) rename {StandAPP/app => app}/src/main/res/mipmap-anydpi-v26/ic_launcher.xml (100%) rename {StandAPP/app => app}/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml (100%) rename {StandAPP/app => app}/src/main/res/mipmap-hdpi/ic_launcher.webp (100%) rename {StandAPP/app => app}/src/main/res/mipmap-hdpi/ic_launcher_round.webp (100%) rename {StandAPP/app => app}/src/main/res/mipmap-mdpi/ic_launcher.webp (100%) rename {StandAPP/app => app}/src/main/res/mipmap-mdpi/ic_launcher_round.webp (100%) rename {StandAPP/app => app}/src/main/res/mipmap-xhdpi/ic_launcher.webp (100%) rename {StandAPP/app => app}/src/main/res/mipmap-xhdpi/ic_launcher_round.webp (100%) rename {StandAPP/app => app}/src/main/res/mipmap-xxhdpi/ic_launcher.webp (100%) rename {StandAPP/app => app}/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp (100%) rename {StandAPP/app => app}/src/main/res/mipmap-xxxhdpi/ic_launcher.webp (100%) rename {StandAPP/app => app}/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp (100%) rename {StandAPP/app => app}/src/main/res/values/colors.xml (100%) rename {StandAPP/app => app}/src/main/res/values/strings.xml (100%) rename {StandAPP/app => app}/src/main/res/values/themes.xml (100%) rename {StandAPP/app => app}/src/main/res/xml/backup_rules.xml (100%) rename {StandAPP/app => app}/src/main/res/xml/data_extraction_rules.xml (100%) rename {StandAPP/app => app}/src/main/res/xml/file_paths.xml (100%) rename {StandAPP/app => app}/src/main/res/xml/network_security_config.xml (100%) rename {StandAPP/app => app}/src/test/java/com/stand/standapp/ExampleUnitTest.kt (100%) rename StandAPP/build.gradle.kts => build.gradle.kts (100%) rename StandAPP/gradle.properties => gradle.properties (100%) rename {StandAPP/gradle => gradle}/gradle-daemon-jvm.properties (100%) rename {StandAPP/gradle => gradle}/libs.versions.toml (100%) rename {StandAPP/gradle => gradle}/wrapper/gradle-wrapper.jar (100%) rename {StandAPP/gradle => gradle}/wrapper/gradle-wrapper.properties (100%) rename StandAPP/gradlew => gradlew (100%) rename StandAPP/gradlew.bat => gradlew.bat (100%) rename StandAPP/img.png => img.png (100%) rename {StandAPP/key => key}/StandAPP (100%) rename StandAPP/settings.gradle.kts => settings.gradle.kts (100%) diff --git a/.gitignore b/.gitignore index b427032..aa724b7 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,3 @@ .externalNativeBuild .cxx local.properties -/StandAPP/.idea -/StandAPP/app/release -/.idea/ diff --git a/.idea/StandAPP-Project.iml b/.idea/StandAPP-Project.iml deleted file mode 100644 index d6ebd48..0000000 --- a/.idea/StandAPP-Project.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/caches/deviceStreaming.xml b/.idea/caches/deviceStreaming.xml deleted file mode 100644 index 3c002e5..0000000 --- a/.idea/caches/deviceStreaming.xml +++ /dev/null @@ -1,1502 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/StandAPP/.idea/compiler.xml b/.idea/compiler.xml similarity index 100% rename from StandAPP/.idea/compiler.xml rename to .idea/compiler.xml diff --git a/.idea/deploymentTargetSelector.xml b/.idea/deploymentTargetSelector.xml index 2146399..f6411f2 100644 --- a/.idea/deploymentTargetSelector.xml +++ b/.idea/deploymentTargetSelector.xml @@ -2,8 +2,16 @@ - + diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 20ddbc7..02c4aa5 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -5,11 +5,11 @@