Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
A
appzxhy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wanglei
appzxhy
Commits
4e6a1d16
Commit
4e6a1d16
authored
Jun 10, 2025
by
wanglei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[bug]修改package和文件夹目录不不一致的问题
parent
d2d1aa8b
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
12 deletions
+10
-12
MyApplication.kt
app/src/main/java/com/base/appzxhy/MyApplication.kt
+4
-6
AlarmReceiver.kt
.../com/base/appzxhy/business/push/receiver/AlarmReceiver.kt
+2
-2
ScreenStatusReceiver.kt
...se/appzxhy/business/push/receiver/ScreenStatusReceiver.kt
+1
-1
TimerManager.kt
...java/com/base/appzxhy/business/push/timer/TimerManager.kt
+2
-2
RepeatingWorker.kt
...va/com/base/appzxhy/business/push/work/RepeatingWorker.kt
+1
-1
No files found.
app/src/main/java/com/base/appzxhy/MyApplication.kt
View file @
4e6a1d16
...
@@ -34,15 +34,13 @@ import com.base.appzxhy.business.ads.AdsMgr
...
@@ -34,15 +34,13 @@ import com.base.appzxhy.business.ads.AdsMgr
import
com.base.appzxhy.business.helper.NewComUtils.spConfig
import
com.base.appzxhy.business.helper.NewComUtils.spConfig
import
com.base.appzxhy.business.push.fcm.FCMManager
import
com.base.appzxhy.business.push.fcm.FCMManager
import
com.base.appzxhy.business.push.notification.MyNotificationManager
import
com.base.appzxhy.business.push.notification.MyNotificationManager
import
com.base.appzxhy.push.receiver.AlarmReceiver.Companion.startAlarm
import
com.base.appzxhy.
business.
push.receiver.AlarmReceiver.Companion.startAlarm
import
com.base.appzxhy.push.receiver.ScreenStatusReceiver
import
com.base.appzxhy.
business.
push.receiver.ScreenStatusReceiver
import
com.base.appzxhy.push.timer.TimerManager.Companion.changeTimer
import
com.base.appzxhy.
business.
push.timer.TimerManager.Companion.changeTimer
import
com.base.appzxhy.push.work.RepeatingWorker.Companion.schedulePeriodicWork
import
com.base.appzxhy.
business.
push.work.RepeatingWorker.Companion.schedulePeriodicWork
import
com.base.appzxhy.ui.batteryinfo.BatteryReceiver.Companion.registerBatteryReceiver
import
com.base.appzxhy.ui.batteryinfo.BatteryReceiver.Companion.registerBatteryReceiver
import
com.base.appzxhy.ui.splash.SplashActivity
import
com.base.appzxhy.ui.splash.SplashActivity
import
com.facebook.appevents.AppEventsLogger
import
com.facebook.appevents.AppEventsLogger
import
kotlinx.coroutines.Dispatchers
import
kotlinx.coroutines.withContext
class
MyApplication
:
Application
()
{
class
MyApplication
:
Application
()
{
...
...
app/src/main/java/com/base/appzxhy/business/push/receiver/AlarmReceiver.kt
View file @
4e6a1d16
package
com.base.appzxhy.push.receiver
package
com.base.appzxhy.
business.
push.receiver
import
android.annotation.SuppressLint
import
android.annotation.SuppressLint
import
android.app.AlarmManager
import
android.app.AlarmManager
...
@@ -12,7 +12,7 @@ import com.base.appzxhy.bean.push.NotificationSendBean
...
@@ -12,7 +12,7 @@ import com.base.appzxhy.bean.push.NotificationSendBean
import
com.base.appzxhy.bean.config.PopupConfigBean
import
com.base.appzxhy.bean.config.PopupConfigBean
import
com.base.appzxhy.business.helper.EventUtils
import
com.base.appzxhy.business.helper.EventUtils
import
com.base.appzxhy.business.push.notification.MyNotificationManager
import
com.base.appzxhy.business.push.notification.MyNotificationManager
import
com.base.appzxhy.push.work.RepeatingWorker
import
com.base.appzxhy.
business.
push.work.RepeatingWorker
import
com.base.appzxhy.utils.LogEx
import
com.base.appzxhy.utils.LogEx
import
java.util.Calendar
import
java.util.Calendar
...
...
app/src/main/java/com/base/appzxhy/business/push/receiver/ScreenStatusReceiver.kt
View file @
4e6a1d16
package
com.base.appzxhy.push.receiver
package
com.base.appzxhy.
business.
push.receiver
import
android.content.BroadcastReceiver
import
android.content.BroadcastReceiver
import
android.content.Context
import
android.content.Context
...
...
app/src/main/java/com/base/appzxhy/business/push/timer/TimerManager.kt
View file @
4e6a1d16
package
com.base.appzxhy.push.timer
package
com.base.appzxhy.
business.
push.timer
import
android.util.Log
import
android.util.Log
import
com.base.appzxhy.MyApplication
import
com.base.appzxhy.MyApplication
...
@@ -6,7 +6,7 @@ import com.base.appzxhy.bean.push.NotificationSendBean
...
@@ -6,7 +6,7 @@ import com.base.appzxhy.bean.push.NotificationSendBean
import
com.base.appzxhy.bean.push.NotificationSendBean.Companion.POPUP_WHERE_TIMER
import
com.base.appzxhy.bean.push.NotificationSendBean.Companion.POPUP_WHERE_TIMER
import
com.base.appzxhy.bean.config.PopupConfigBean.Companion.popupConfigBean
import
com.base.appzxhy.bean.config.PopupConfigBean.Companion.popupConfigBean
import
com.base.appzxhy.business.push.notification.MyNotificationManager
import
com.base.appzxhy.business.push.notification.MyNotificationManager
import
com.base.appzxhy.push.receiver.ScreenStatusReceiver
import
com.base.appzxhy.
business.
push.receiver.ScreenStatusReceiver
import
java.util.Timer
import
java.util.Timer
import
java.util.TimerTask
import
java.util.TimerTask
...
...
app/src/main/java/com/base/appzxhy/business/push/work/RepeatingWorker.kt
View file @
4e6a1d16
package
com.base.appzxhy.push.work
package
com.base.appzxhy.
business.
push.work
import
android.content.Context
import
android.content.Context
import
androidx.work.Constraints
import
androidx.work.Constraints
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment