Meet the team behind ShepHertz Platform
Making a difference in the world together
People whose belief drives us forward
Enterprises & Developers from across the world
Access the ShepHertz Newsroom
800+ APIs. 25+ Modules. 16 SDKs.Real-time Actionable Analytics. 1 Platform.
Acquire. Engage. Retain. Convert.
Comprehensive Solution to Securely Expose Protected Resources as APIs
Real Time & Turn Based MultiplayerGaming Platform With Game Mechanics.
Develop > Deploy > launch > Scale > Monitor
Continuous Integration & Delivery
Customers Want A 360 °Omni-Channel Retail Experience.
Seamless & ConnectedOmni-Channel Experience Delivered.
Plethora of Games are LaunchedEvery Day. Don't Let Yours Die.
Leverage User Data to DeliverPersonalized Content Across Channels
Inspire Wanderlust in theCustomers with Omni-Channel Experience
800+ APIs. 25+ Modules. 16 SDKs. Real-time Actionable Analytics. 1 Platform.
Real Time & Turn Based Multiplayer Gaming Platform With Game Mechanics.
Forum
When you send the json message from php web portal to Android device, convert that json string into Json Object in Receiver class of Android application as explained in below code snippet:
String message = intent.getExtras().getString("message"); JSONObject jsonMessage=new JSONObject(message ); String myPushMessage=jsonMessage.optString("message", "default message "); String title=jsonMessage.optString("title", "Default title"); int id=jsonMessage.optInt("id", 0);
Notification notification = new NotificationCompat.Builder(context) .setContentTitle(title) .setContentText(myPushMessage) .setContentIntent(intent) .setSmallIcon(icon) .setWhen(when) .setLargeIcon(getBitmapFromURL("http://profile.ak.fbcdn.net/hprofile-ak-prn1/572792_518473456_430198189_q.jpg")) .setLights(Color.YELLOW, 1, 2) .setAutoCancel(true) .build();