Add lock screen notifications to your app with just 8 lines of code:
Intent intent = new Intent();
intent.putExtra("YourAppName", t1.getText().toString());
intent.putExtra("YourMsg", t2.getText().toString());
intent.putExtra("YourPackage", "com.notifyMe");
intent.putExtra("YourActivity", "com.notifyMe.NotifyTestActivity");
intent.putExtra("YourAppIconLink", " ");
intent.setAction("Notify.FlyScreen");
sendBroadcast(intent);
Easy as that! Feel free to contact us with any questions or comments. Download the latest FlyScreen for Android to test your app notifications.