Compare commits

...

9 Commits

Author SHA1 Message Date
d0d02cea2f <timestamp>APK 15.1.4 release Publish. 2025-09-28 13:16:52 +08:00
ZhanGSKen
460a664d7d 编译测试 2025-09-28 13:14:40 +08:00
e9bb789daa <libappbase>Library Release 15.10.9 2025-09-27 21:03:24 +08:00
dbff19e7f4 <appbase>APK 15.10.9 release Publish. 2025-09-27 21:03:08 +08:00
ZhanGSKen
44679d0c8a GlobalApplication函数参数类型调整 2025-09-27 21:02:02 +08:00
6656161903 <appbase>APK 15.10.8 release Publish. 2025-09-26 05:36:14 +08:00
ZhanGSKen
edc63c750b 整理git管理文件 2025-09-22 08:25:44 +08:00
b170085482 <libappbase>Library Release 15.10.7 2025-09-22 06:01:13 +08:00
6e8ba3394d <appbase>APK 15.10.7 release Publish. 2025-09-22 02:57:06 +08:00
5 changed files with 22 additions and 26 deletions

16
.gitignore vendored
View File

@@ -87,19 +87,15 @@ lint/tmp/
# Android Profiling # Android Profiling
*.hprof *.hprof
# Custom # 忽略 Lint 输出文件
.androidide
lint-results.xml lint-results.xml
lint-results.html lint-results.html
winboll.properties
local.properties ## 忽略 AndroidIDE 临时文件夹
.androidide
## 忽略模块应用编译配置 ## 忽略模块应用编译配置
/settings.gradle /settings.gradle
/gradle.properties /gradle.properties
/winboll.properties
## 忽略 srv 纠结问题 /local.properties
/srv/
## 忽略 winboll-x 文件夹
/winboll-x/

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle #Created by .winboll/winboll_app_build.gradle
#Mon Sep 22 02:50:34 HKT 2025 #Sat Sep 27 21:03:20 HKT 2025
stageCount=7 stageCount=10
libraryProject=libappbase libraryProject=libappbase
baseVersion=15.10 baseVersion=15.10
publishVersion=15.10.6 publishVersion=15.10.9
buildCount=0 buildCount=0
baseBetaVersion=15.10.7 baseBetaVersion=15.10.10

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle #Created by .winboll/winboll_app_build.gradle
#Mon Sep 22 02:50:34 HKT 2025 #Sat Sep 27 21:03:08 HKT 2025
stageCount=7 stageCount=10
libraryProject=libappbase libraryProject=libappbase
baseVersion=15.10 baseVersion=15.10
publishVersion=15.10.6 publishVersion=15.10.9
buildCount=0 buildCount=0
baseBetaVersion=15.10.7 baseBetaVersion=15.10.10

View File

@@ -22,12 +22,12 @@ public class GlobalApplication extends Application {
GlobalApplication.isDebuging = isDebuging; GlobalApplication.isDebuging = isDebuging;
} }
public static void saveDebugStatus(GlobalApplication application) { public static void saveDebugStatus(Context context) {
APPModel.saveBeanToFile(application.getAPPModelFilePath(application), new APPModel(GlobalApplication.isDebuging)); APPModel.saveBeanToFile(getAPPModelFilePath(context), new APPModel(GlobalApplication.isDebuging));
} }
static String getAPPModelFilePath(GlobalApplication application) { static String getAPPModelFilePath(Context context) {
return application.getDataDir().getPath() + "/APPModel.json"; return context.getDataDir().getPath() + "/APPModel.json";
} }
public static boolean isDebuging() { public static boolean isDebuging() {

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle #Created by .winboll/winboll_app_build.gradle
#Mon Jul 28 11:36:51 HKT 2025 #Sun Sep 28 13:16:52 HKT 2025
stageCount=4 stageCount=5
libraryProject= libraryProject=
baseVersion=15.1 baseVersion=15.1
publishVersion=15.1.3 publishVersion=15.1.4
buildCount=0 buildCount=0
baseBetaVersion=15.1.4 baseBetaVersion=15.1.5