I am developing an application in Android that makes the tracking when the user goes for a walk. I save it in his smartphone but I would like that the user would have the opportunity to upload the entire tracking to facebook. Is there any way to do this?
I'm using google maps.
You can do this via OpenGraph actions and objects, meaning that you'll have to transform your track to a fitness.course object as outlined in the docs below. Google Maps is not related to this.
See
https://developers.facebook.com/docs/sharing/opengraph/custom
https://developers.facebook.com/docs/reference/opengraph/object-type/fitness.course/
https://developers.facebook.com/docs/reference/opengraph/action-type/fitness.runs/
Related
we have a mobile website. for example link is m.xyz.com. and a android hybrid app in which we are loading m.xyz.com in webview.
We have implemented google analytics tacking in this website to track page view.
In Google analytics, it is showing all users (mobile browser + android app).
we need a real time user in GA of android application and mobile website.
Is it possible? if yes let me know possible ways.
Unfortunately, you cannot create a custom "real-time" report, but with a little tagging, you can utilize the "Traffic Sources" real-time report.
In your android app, instead of referencing "m.xyz.com" in webview, reference "m.xyz.com?utm_source=myapp&medium=webview", then in the real-time report you should see traffic from Medium "webview" and source "myapp".
we have tried to accomplish this task, but due to time constrain we have not completed our research on this.
Finally We have choose option to publish same website on new subdomail (m2.xyz.com) with new tracking code.
I am trying to build a simple app which can be triggered by google assistant.
Like if the users say, "Hey Google, Open TestApp" or "Hey Google, perform xyz from TestApp".
What would be the best approach? Dialogflow?
Saying "Okay, Google - do [something] with [your app]" in order to open your app to fulfill a query is called a Google Voice Action and you can add these to your app quite easily. See the documentation here for full details. Keep in mind - for these to work, your app does need to be in the Play Store, uploaded as a beta at the very least.
The Google Assistant is a little bit different - it's more conversational and doesn't take the user directly to your app. Instead, it takes the user's input, looks for the appropriate app to handle the query, feeds the query to your app, and then returns the response, within Google Assistant itself. This is all about having a conversation with an app, from the Google Assistant, without actually opening up your app.
Is Tracking of user Behavior like which activity user saw, what time he saw them , and all possible. Or Can this only be done from the back end ?
Does Google Analytic Premium has this feature ?
Edit:
We are looking to track the user behavior on android application and want to know the details of the pages the user has visited within the app.
The Google Analytics gives me the count of the visits however it does not confirm as to who visited which page. The user_id tracking for Google Analytics is not working for some reasons.
Is there a tool where we can record the user behavior to eventually improve the app functionality.
If you want to track individual users, you need to send a unique userId to google analytics as a custom dimension value. Make sure the Id you send to google is not PII as that is against google's privacy policy. You don't need to have a premium account to implement this behavior.
If you are not aware of how custom dimensions work, please check this link for more info on it
https://support.google.com/analytics/answer/2709828?hl=en
Also for things like at what time a particular user viewed a page, you can look at generating Custom Reports. Select Parameter Time from Dimensions Tab in Custom Reports. More info here.
https://support.google.com/analytics/answer/1151300?hl=en
My current Android application allows users to signin using the Google Plus button.
A feature of my application is that i would like to reward users who return within a month of first signing in.
Do i have to remember when they first signed in using Google Plus?
Or does the com.google.android.gms.plus API expose this detail? e.g. initial Sign In date cross referenced to my Application.
I have searched the com.google.android.gms.plus docs but couldnt see anything.
Did i miss something?
I'm not aware of a G+ API that tells you when a user first authorized an application. I would recommend using Androids app data storage. That should be pretty lightweight. You can also open a feature requests.
I am new to mobile programming and this is my first time to use Android. I have to develop a location based services on mobile application.
I had done the step which able to allow user to login my application using (Google Oauth), get user location, get places nearby.
Now I want to show user review in the Map application from Google and user able to put their review for a place. How can I do that? I had read the document here. (https://developers.google.com/places/documentation/index)
But still I am not sure where should I put it. Is there any documents for me to refer? A sample code will be big help for me...
Thanks in advance.