Fabric How to view/ export events' details - crashlytics

While I've successfully reported custom events to Fabric, I'm not able to view the details of the events.
Hovering the graph and the table gives me snippets of the event logs but the text strings are cut off, it's so frustrating
There are 2 "download" buttons in the following screenshot.
However, clicking on them only gives me the count of the events, not the events themselves

Mike from Fabric here. There is not currently a way to download the custom attributes associated with Answers' events. Noted that you'd love to have this added in.

I found something that works for me for now:
Click on 1 Crashlytics crash
Click on a version number under Recent Activity
There I can view the log from Crashlytics.log(int priority, String tag, String msg); together with the user's ID and hashed email

Related

Hangouts Interactive cards: how to add text fields?

Can we design an interactive card with a text filed?
I went through the documentation, i couldn't find any idea on how to create
checkbox
text field
can someone help me in this matter?
Considerations
At the moment there are no such widgets available. You can only interact with buttons or clicking on text paragraphs.
You should definitely request this as a new feature if it's fundamental for your workflow.
Proposed workaround
However, since this is a messaging App you can build a system that uses the very same "reply" feature in order to get back the user input and therefore simulate a text field.
Respond to message events
You can play with the message events in order to parse the reply and use it in your application and provide an appropriate answer to your users.
Build your prompts based on custom commands
You can also create custom commands to trigger different input requests if you want to.
References
Events
Custom commands

Start Over button in Gupshup chatbot

We would like to know how the Start Over button was used in one of the examples in Gupshup chatbot. Attaching the image for your reference.
We are actually intrested in allowing the user to go back to the main menu by using the button option. We have seen videos with user tying back. And also we have used the linking options.
Thanks
Manjiri

Remove test score via iTunesConnect

On WWDC session 605, it is said test data can be management via iTunesConnect. But I currently can't find how to achieve this.
It is live or am I missing something?
You should follow these steps:
Login in iTunesConnect with appropriate AppleID (the one associated with your iTunesConnect account).
Go to MyApps
Click on your app
Click on Features
Choose GameCenter (among other features) in left side menu
From dropdown menu located in right part of the screen choose "Manage scores and players"
From there, choose the leaderboard you want to manage and click on "manage" button. All scores will show up and you can choose what scores you want to remove, or which player to block.
EDIT:
Just noticed that you are trying to delete all test data before submitting an app to the Store instead of managing already submitted game.
In that case, just chose "Delete test data" from dropdown menu from the picture above. This action can take about 24 hours to happen. So be patient.
Hope this helps!

Share button disabled in Google Plus while sharing photos

I want to share many photos from an album. So, first I selected all and then, press the share button at top (as showed here https://support.google.com/plus/answer/1407859?hl=en), add a comment, the email of the receiver, but the share button is gray, it seems disabled. What can I do?
This is how it appears.
I encountered the same issue as well and tried putting the album name but still didn't seem to enable the Share button.
The Share button actually is not dependent on the album title, as what you suggested. The only mandatory field here is the To field, in order to share your photos properly to others.
So what I found out was that it had something to do with my slow Internet connection. After I reset my connection and refreshed my browser, it all seemed to work just fine automatically. Perhaps some things must be fully loaded first before the Share button can be enabled.
It seems working now. What I did was, added a name for the Album as shown below, and hit cancel. The next time I pressed the share button at the top it displays the window but now with the share button in green.
Thanks anyway.

top.location.replace creates history item in Safari/Chrome

At this point we have a photogallery which uses hashvalues to determine which picture is currently showed to the user, and to support sending the page to a friend and such. Something like:
http://url/photos/#photo-4
When we have loaded the corresponding picture after clicking the next or previous button, we change the url according to the JS 1.1 specification using:
top.location.replace(url.url + hash);
Our wanted behaviour is that no history item is being created, so users can use the back button to leave the photogallery, instead of using the back button to see the previous pictures.
In IE and Firefox the method works like a charm, but Safari and Chrome do make a history item for the changed url. I have found alot of samples how to create history items when using the hash for navigating like this, but I want to do this the other way. Any clue?
This works as expected now:
On Safari [5.1.7] location.replace() works as expected – the URL is replaced, nothing is added to the back button's queue, and nothing is added to the history menu.
On Chrome [21.0.1180.82] location.replace() is a little tricky – the URL is replaced and nothing is added to the back button's queue, but it does add an item to the history menu.
What makes this tricky is that there are two distinct history queues – the history menu and the back/forward buttons. Click and hold on the back and forward buttons to see their queue and compare with the history menu.
And the history queue of the back/forward buttons is tied to the active tab. Also, the button history remains even when you clear the history menu – at least until you close the tab.
There seems to be no solution at this point.
Have you looked at assigning your hash using window.location.hash = newHash instead of replacing the entire url?
https://developer.mozilla.org/en/DOM/window.location