Commit a34a79d9 authored by d4vidi's avatar d4vidi

Increase visibility of some data members on Android

parent c8594ba1
......@@ -25,16 +25,12 @@ import com.wix.reactnativenotifications.core.notificationdrawer.PushNotification
import static com.wix.reactnativenotifications.Defs.NOTIFICATION_OPENED_EVENT_NAME;
import static com.wix.reactnativenotifications.Defs.NOTIFICATION_RECEIVED_EVENT_NAME;
// TODO:
// 1. Opening the from notif, then tapping 'home', the opening from launcher icon results in main activity over main activity
// 2. Double check initial notification set up and clearing
public class PushNotification implements IPushNotification {
final private Context mContext;
final private AppLifecycleFacade mAppLifecycleFacade;
final private PushNotificationProps mNotificationProps;
final private AppVisibilityListener mAppVisibilityListener = new AppVisibilityListener() {
final protected Context mContext;
final protected AppLifecycleFacade mAppLifecycleFacade;
final protected PushNotificationProps mNotificationProps;
final protected AppVisibilityListener mAppVisibilityListener = new AppVisibilityListener() {
@Override
public void onAppVisible() {
mAppLifecycleFacade.removeVisibilityListener(this);
......
......@@ -9,7 +9,7 @@ import com.wix.reactnativenotifications.core.InitialNotification;
public class PushNotificationsDrawer implements IPushNotificationsDrawer {
protected final Context mContext;
final protected Context mContext;
public PushNotificationsDrawer(Context context) {
mContext = context;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment