BugFix
This commit is contained in:
parent
6378433424
commit
26cdacf1c6
@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Mon Feb 17 03:10:13 GMT 2025
|
#Mon Feb 17 03:42:39 GMT 2025
|
||||||
stageCount=2
|
stageCount=2
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=1.5
|
baseVersion=1.5
|
||||||
publishVersion=1.5.1
|
publishVersion=1.5.1
|
||||||
buildCount=184
|
buildCount=185
|
||||||
baseBetaVersion=1.5.2
|
baseBetaVersion=1.5.2
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Mon Feb 17 03:10:13 GMT 2025
|
#Mon Feb 17 03:42:39 GMT 2025
|
||||||
stageCount=2
|
stageCount=2
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=1.5
|
baseVersion=1.5
|
||||||
publishVersion=1.5.1
|
publishVersion=1.5.1
|
||||||
buildCount=184
|
buildCount=185
|
||||||
baseBetaVersion=1.5.2
|
baseBetaVersion=1.5.2
|
||||||
|
@ -35,7 +35,7 @@ public class WinBollReceiver extends BroadcastReceiver {
|
|||||||
if (SOS != null && SOS.equals("Service")) {
|
if (SOS != null && SOS.equals("Service")) {
|
||||||
String szAPPSOSBean = intent.getStringExtra("APPSOSBean");
|
String szAPPSOSBean = intent.getStringExtra("APPSOSBean");
|
||||||
LogUtils.d(TAG, String.format("szAPPSOSBean %s", szAPPSOSBean));
|
LogUtils.d(TAG, String.format("szAPPSOSBean %s", szAPPSOSBean));
|
||||||
if (szAPPSOSBean != null) {
|
if (szAPPSOSBean != null && !szAPPSOSBean.equals("")) {
|
||||||
try {
|
try {
|
||||||
APPSOSBean bean = APPSOSBean.parseStringToBean(szAPPSOSBean, APPSOSBean.class);
|
APPSOSBean bean = APPSOSBean.parseStringToBean(szAPPSOSBean, APPSOSBean.class);
|
||||||
if (bean != null) {
|
if (bean != null) {
|
||||||
|
@ -47,6 +47,7 @@ public class APPSOSReportWidget extends AppWidgetProvider {
|
|||||||
LogUtils.d(TAG, "ACTION_ADD_SOS_REPORT");
|
LogUtils.d(TAG, "ACTION_ADD_SOS_REPORT");
|
||||||
String szAPPSOSReportBean = intent.getStringExtra("APPSOSReportBean");
|
String szAPPSOSReportBean = intent.getStringExtra("APPSOSReportBean");
|
||||||
LogUtils.d(TAG, String.format("szAPPSOSBean %s", szAPPSOSReportBean));
|
LogUtils.d(TAG, String.format("szAPPSOSBean %s", szAPPSOSReportBean));
|
||||||
|
if (szAPPSOSReportBean != null && !szAPPSOSReportBean.equals("")) {
|
||||||
try {
|
try {
|
||||||
APPSOSReportBean bean = APPSOSReportBean.parseStringToBean(szAPPSOSReportBean, APPSOSReportBean.class);
|
APPSOSReportBean bean = APPSOSReportBean.parseStringToBean(szAPPSOSReportBean, APPSOSReportBean.class);
|
||||||
if (bean != null) {
|
if (bean != null) {
|
||||||
@ -60,6 +61,7 @@ public class APPSOSReportWidget extends AppWidgetProvider {
|
|||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
LogUtils.d(TAG, e, Thread.currentThread().getStackTrace());
|
LogUtils.d(TAG, e, Thread.currentThread().getStackTrace());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else if (intent.getAction().equals(ACTION_RELOAD_SOS_REPORT)) {
|
} else if (intent.getAction().equals(ACTION_RELOAD_SOS_REPORT)) {
|
||||||
LogUtils.d(TAG, "ACTION_RELOAD_SOS_REPORT");
|
LogUtils.d(TAG, "ACTION_RELOAD_SOS_REPORT");
|
||||||
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
|
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user