Compare commits
5 Commits
377ec4de09
...
autoinstal
| Author | SHA1 | Date | |
|---|---|---|---|
| 5e39963eea | |||
|
|
71c7af6a9e | ||
| e9bb789daa | |||
| dbff19e7f4 | |||
|
|
44679d0c8a |
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Fri Sep 26 05:36:14 HKT 2025
|
#Sat Sep 27 21:03:20 HKT 2025
|
||||||
stageCount=9
|
stageCount=10
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.10
|
baseVersion=15.10
|
||||||
publishVersion=15.10.8
|
publishVersion=15.10.9
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.10.9
|
baseBetaVersion=15.10.10
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Tue Jun 24 09:54:47 HKT 2025
|
#Sun Sep 28 12:44:55 HKT 2025
|
||||||
stageCount=3
|
stageCount=4
|
||||||
libraryProject=
|
libraryProject=
|
||||||
baseVersion=15.2
|
baseVersion=15.2
|
||||||
publishVersion=15.2.2
|
publishVersion=15.2.3
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.2.3
|
baseBetaVersion=15.2.4
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Fri Sep 26 05:36:14 HKT 2025
|
#Sat Sep 27 21:03:08 HKT 2025
|
||||||
stageCount=9
|
stageCount=10
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.10
|
baseVersion=15.10
|
||||||
publishVersion=15.10.8
|
publishVersion=15.10.9
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.10.9
|
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() {
|
||||||
|
|||||||
Reference in New Issue
Block a user