Modify Launcher Activity


Please select your Android project type for the appropriate instructions:

Java
Kotlin

Invoke Pushy.listen(this) in your launcher activity's onCreate() method so that Pushy's internal notification listening service will restart itself, if necessary.

Find:
super.onCreate(savedInstanceState);
super.onCreate(savedInstanceState)
Add Below:
Pushy.listen(this);
Pushy.listen(this)