I can handle the second tile with a notification of wp7?
I can only do it on first.
Do you have any idea to offer me?
Surely management is possible using the raw notifications within the application and will handle me the tile, but are still forced to enter into the application to update.
through aid, here's how I had to format the xml to send notification, I missed the tag ID
<?xml version="1.0" encoding="utf-8"?>
<wp:Notification xmlns:wp=WPNotification>
<wp:Tile ID="Navigation URI of the tile to update">
<wp:BackgroundImage><string></wp:BackgroundImage>
<wp:Count><string></wp:Count>
<wp:Title><string></wp:Title>
<wp:BackBackgroundImage><string></wp:BackBackgroundImage>
<wp:BackTitle><string></wp:BackTitle>
<wp:BackContent><string></wp:BackContent>
</wp:Tile>
</wp:Notification>
thx tomasmcguinness
The MSDN documentation covers secondary tiles
http://msdn.microsoft.com/en-us/library/hh202945(v=vs.92).aspx
These paramters are the ones you use to update the secondary tile:
<wp:BackBackgroundImage>
<wp:BackTitle>
<wp:BackContent>
Populate these three elements in your push XML and that will update the back tile.
Related
I am developing an app for Android TV is it possible to know, on which TV my app is running or what action is performed on it?
Thank you.
To review your app's supported devices:
Sign in to your Play Console.
Select an app.
On the left menu, click
Release management > Device catalog. If you haven't already, review
and accept the Terms of Service.
Select the All, Supported, or
Excluded tabs. If you want to download a list of devices as a CSV
file, near the right side of the page, click Download device list.
For more infos:
https://support.google.com/googleplay/android-developer/answer/7353455
To track action performed on your app, you can use Fabric's Answers plug in.
Here is a sample code you'll need to add in your code to track events in Answers:
public void onKeyMetric() {
// TODO: Use your own string attributes to track common values over time
// TODO: Use your own number attributes to track median value over time
Answers.getInstance().logCustom(new CustomEvent("Video Played")
.putCustomAttribute("Category", "Comedy")
.putCustomAttribute("Length", 350));
}
For more infos:
https://fabric.io/kits/android/answers
So I need to view the message body of a message that is entering an orchestration in BizTalk 2006, because there is no admin console tracking, i'm trying to use Health and Activity Tracking' I can see the orchestration in the query results but when I right click on the cell and show the message flow, it show me the details of the inputted message into the orchestration but from what I can see it doesn't allow me to view the message body, am I missing something or is there another way to view the body in 2006?
Thanks,
Kyle.
UPDATE - I found the answer, I just needed to run a query in HAT, right click on the tracked event and 'Save All Tracked Messages...' that then allows you to view the message bodies :)
in smartToolBar AddRecord,SaveRecord,CopyRecord ,DeleteRecord and cancel button always desabled.
Help me to ENABLE IT.
Do you have a smart link to a smart Data Object (Smart Query in V8)? And a link to the viewer/browse you're using?
In running the graph API that is given as sample: https://graph.microsoft.com/v1.0/me/, it returns an output in the screen
What info is it returning and how can I use it in a user interface....
The easiest way to see what info is returned and try out different calls is to use the Graph Explorer at https://graph.microsoft.io/en-us/graph-explorer.
Otherwise, check the documentation at https://graph.microsoft.io/en-us/docs.
That API endpoint (https://graph.microsoft.com/v1.0/me/) return the user profile.
Here is the detail: https://graph.microsoft.io/en-us/docs/api-reference/v1.0/api/user_get
You can use the information however you wish on your client (e.g., display list of current licenses, display user information for confirmation and updates, etc.). Other user-related methods are here: https://graph.microsoft.io/en-us/docs/api-reference/v1.0/resources/user
In one of my watchKit application I need to show the route between two locations on the WKInterfaceMap. I searched for different links including Apple Developer Link. But I didn't find any way to display the route on the WKInterfaceMap.
Then, how the Uber watchKit App displays the route on the WKInterfaceMap? Is it the Map or an WKInterfaceImage/UIImage?
Below is the screenshot for the Uber App.
My guess is that they are be finding the route on the iOS app then passing it on to the watch in the form of a WKInerfaceImage
WKInterfacemap is non interactive map. If you just want to give the user driving directions, use below code where you can specify destination lat and long and open Map application on iWatch. It will launch Map application on iPhone, from there WatchOS will receive routing information.
let coordinate = CLLocationCoordinate2DMake( <ENTER DESTINATON LATITUDE>, <ENTER DESTINATON LONGITUDE>)
let mapItem = MKMapItem(placemark: MKPlacemark(coordinate: coordinate, add ressDictionary:nil))
mapItem.name = <DESTINATION NAME>
mapItem.openInMaps(launchOptions: [MKLaunchOptionsDirectionsModeKey : MKLaunchOptionsDirectionsModeDriving])