Notifications Wear Style for Gear S

pacosal

Well-known member
Feb 2, 2011
83
0
0
Visit site
Notifications Wear Style for Gear S

This App emulates the behavior of Android Wear Watches when receive notifications.

It will send to your Gear S these notifications:

- Gmail
- WhatsApp
- Line
- SpotBros
- Viber
- Hangouts
- BBM
- WeChat
- Telegram
- Google Now
- Facebook Messenger
- Default email App

and the others you want.

First of all, enable this App to be able to listen to your notifications.

After that run the App on your gear S.

WARNING: It takes some seconds to connect first time. If doesn't work (The top-left button background is red) tap on red Button and press connect button or disable bluetooth in your mobile phone and enable it again.

- Swipe UP and Down for changing notification
- Swipe RIGHT to see more notifications pages
- Swipe LEFT to go to left but if it is the first page, the notification will be erased and in your mobile as well.

In some notifications you will see images like whatsapp if the notification image is shown in your mobile too.

In some notifications there are actions, you have to tap on it to execute it.

If the action has options to answer from the watch, the circle background will be Red instead of Blue and when you tap on it a list of answers will be showed.

Tap on any of them to answer the notification.

Now with keyboard included.

Now with voice input reply.

Now with options menu. Tap on top-left button to go.

Tested on WhatsApp, Hangouts and Gmail, but it should work in other Apps as well.

You select the Apps that you want to receive Notifications or not.

You can select the vibrations number for every selected App.

You can use this system and the default notification system as well. Select only the Instant Alerts checked in the default system and use this App for the rest notifications.

Go to the mobile App to select more settings.

You can enable or disable receiving notifications in the App settings or sending Broadcast intents from another App like llama or tasker.

You have to send these intents:

com.pacosal.gear.action.START

com.pacosal.gear.action.STOP

Now in spanish language as well.

This App is similar to this one http://forums.androidcentral.com/sa...430058-notifications-wear-style-gear-2-a.html but for Gear S instead of Gear 2.

It can be found on Samsung Gear Store.
 

fkpalm

Well-known member
Nov 9, 2009
590
11
0
Visit site
Since upgrade i cannot get this to work. Was working when i first installed it. I shut Bluetooth and turned it back on with no luck thinking about uninstalling it

Posted via the Android Central App
 

jlczl

Well-known member
Apr 28, 2011
780
0
0
Visit site
Is this the same app as "Notifications for Gear S"?

I got that one on the Play Store and am on version 1.2.3

Posted via the Android Central App
 

pacosal

Well-known member
Feb 2, 2011
83
0
0
Visit site
Is this the same app as "Notifications for Gear S"?

I got that one on the Play Store and am on version 1.2.3

Posted via the Android Central App

No, this is another version with its own interface.

I like it more, but it depends on you!
 

pacosal

Well-known member
Feb 2, 2011
83
0
0
Visit site
Version 1.8.4 uploaded to certification process:

- Better vibration when a notification is received
- Memory consumption reduced
- Button to test notifications
 

pacosal

Well-known member
Feb 2, 2011
83
0
0
Visit site
Version 1.9.5 released

Compatible with clock with notifications like the new ClockGearS App.

Soon at Samsung Market for free.
 

Attachments

  • 20150130_202653.jpg
    20150130_202653.jpg
    369.2 KB · Views: 44

ShaggyKids

Well-known member
Dec 1, 2010
2,710
35
48
Visit site
Does this app work RELIABLY to receive notifications on my Gear S when it's not connected by bluetooth to my Note 3?
 

pacosal

Well-known member
Feb 2, 2011
83
0
0
Visit site
For Developers


Steps to get last notification message in your own watchfaces:

The user must have the App "Notifications Wear Style for Gear S" installed.

At Settings he have to set your WatchFace id. Image attached.

It's useful that switching on screen option at settings is disabled in order not to get conflicts. Your watchface will switch on the screen and vibrate the gear.

The App sends the following data:


- icon
- package
- message
- vibrations number
- message author

The code to include is the following:

Code:
var localPort;
var localPortWatchId;

function onLoad()  {

	    localPort = tizen.messageport.requestLocalMessagePort("NWS_PORT");
	    localPortWatchId = localPort.addMessagePortListener(function(data, remote) 
	    		{
	    	
	    			var message = "";
	    			var package = "";
	    			var icon = "";
	    			var vibrations = "";
	    			var who = "";
	    			
	    		    data.forEach(function(item) 
	    		    {
	    			   if (item.key == "message") { 
	    				   message = item.value; 
	    			   }
	    			   if (item.key == "icon") { 
	    				   icon = "<img src='data:image/png;base64," + item.value + "'>";
	    			   }
	    			   if (item.key == "vibrations") {
	    				   vibrations = item.value;
	    			   }
	    			   if (item.key == "package") {
	    				   package = item.value;
	    			   }
	    			   if (item.key == "who") {
	    				   who = item.value;
	    			   }

	    		    });
	    		    
	    		    tizen.power.turnScreenOn();
   		            setTimeout(function() {
			        singleVibration(vibrations);
			    }
			   , 1500);
	    		   
	    		   
	    		});

}

function singleVibration(vibraciones)
{
	var iVib = parseInt(vibraciones);
	switch (iVib) {
		case 0:
			break;
		case 1:
		    navigator.vibrate([300]);
			break;
		case 2:
		    navigator.vibrate([300, 200, 300]);
			break;
		case 3:
		    navigator.vibrate([300, 200, 300, 200, 300]);
			break;
		case 4:
		    navigator.vibrate([300, 200, 300, 200, 300, 200, 300]);
			break;
		case 5:
		    navigator.vibrate([300, 200, 300, 200, 300, 200, 300, 200, 300]);
			break;
		default:
		    navigator.vibrate([300, 200, 300]);
			break;
	}
}

In order to launch the App Notifications Wear Style when the user Tap on message.

Code:
tizen.application.launch("bthwlwy7tY.NotificationsWearStyleGearS");

Permissions:

Code:
    <tizen:privilege name="http://tizen.org/privilege/power"/>
    <tizen:privilege name="http://tizen.org/privilege/application.launch"/>

Write to pacosal@gmail.com for help
 

Attachments

  • Screenshot_2015-02-01-11-01-05.jpg
    Screenshot_2015-02-01-11-01-05.jpg
    65 KB · Views: 35

fkpalm

Well-known member
Nov 9, 2009
590
11
0
Visit site
Downloaded it and it seems to work really good. Took me a while to get it working you have to download notification ware for it to work. Video is terrible.

Posted via the Android Central App
 

Members online

Forum statistics

Threads
942,111
Messages
6,912,524
Members
3,158,236
Latest member
itamargs