Compare commits
16 Commits
appbase-v1
...
webpagesou
| Author | SHA1 | Date | |
|---|---|---|---|
| c3472c5b31 | |||
|
|
c4bf7dc364 | ||
| 64018b4314 | |||
|
|
7707901f29 | ||
|
|
1eb77df403 | ||
| e9bb789daa | |||
| dbff19e7f4 | |||
|
|
44679d0c8a | ||
| 6656161903 | |||
|
|
edc63c750b | ||
| b170085482 | |||
|
|
ec25013cb8 | ||
|
|
2f2c23a803 | ||
|
|
17c01625be | ||
|
|
c464f0cfa1 | ||
|
|
4b9d6a41bf |
16
.gitignore
vendored
16
.gitignore
vendored
@@ -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/
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Mon Sep 22 02:57:06 HKT 2025
|
#Sat Sep 27 21:03:20 HKT 2025
|
||||||
stageCount=8
|
stageCount=10
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.10
|
baseVersion=15.10
|
||||||
publishVersion=15.10.7
|
publishVersion=15.10.9
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.10.8
|
baseBetaVersion=15.10.10
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Mon Sep 22 02:57:06 HKT 2025
|
#Sat Sep 27 21:03:08 HKT 2025
|
||||||
stageCount=8
|
stageCount=10
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.10
|
baseVersion=15.10
|
||||||
publishVersion=15.10.7
|
publishVersion=15.10.9
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.10.8
|
baseBetaVersion=15.10.10
|
||||||
|
|||||||
@@ -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() {
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Fri Jun 13 10:04:49 HKT 2025
|
#Sun Sep 28 13:47:48 HKT 2025
|
||||||
stageCount=7
|
stageCount=9
|
||||||
libraryProject=
|
libraryProject=
|
||||||
baseVersion=15.0
|
baseVersion=15.0
|
||||||
publishVersion=15.0.6
|
publishVersion=15.0.8
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.0.7
|
baseBetaVersion=15.0.9
|
||||||
|
|||||||
Reference in New Issue
Block a user