0

I am asking how to run query to get event count from my android application.My app using Firebase realtime database and we linked firebase analytics to Big query.How to get my custom event count by run query from my android application.or Tell me how to get that count from my android app,i have one field in my application to show that count.

MariP
  • 35
  • 1
  • 8
  • Have you tried looking at [other similar questions](https://stackoverflow.com/questions/tagged/google-bigquery+firebase-analytics)? This kind of question probably already has an answer. You might want to take a look at [how to ask](https://stackoverflow.com/help/how-to-ask). – Elliott Brossard Jun 13 '17 at 06:40
  • Could not reach exact solution,Could you please help me – MariP Jun 13 '17 at 10:56
  • Please provide more information about what you have tried so far, e.g. the query you are working on. The [how to ask](https://stackoverflow.com/help/how-to-ask) topic explains how to ask a good question. – Elliott Brossard Jun 13 '17 at 21:57
  • Hi Elliott,Could you please provide step by step procedure to integrate big query in my android app.Now I know the structure of big query in my app.But in gradle part i failed.I could not move..i am struct in that part.Please help me...what are the things i have to add before query a big query from my android application. – MariP Jun 15 '17 at 04:19
  • Maybe you should post a separate question under the `android` tag in that case. – Elliott Brossard Jun 15 '17 at 05:03
  • Ok Elliott, I will post. – MariP Jun 15 '17 at 06:59

1 Answers1

0

Only the data gathered by Analytics will be exported to Big Query once the linkage has been established.

Raw data for event count should be available in the event_dim as per the Big Query Export Schema.

Refer to the sample queries for Firebase-Big Query for more details in this official Google docs.

AniV
  • 3,997
  • 1
  • 12
  • 17
  • Hi AniV..Thank you for your answer,I used these query in my app,but when I tried to give dependency in gradle I showing error,i could not run app.My Error in gradle is Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. > com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/common/annotations/Beta.class – MariP Jun 14 '17 at 04:12
  • Did you try the suggestions in the answer of this post? https://stackoverflow.com/questions/33209631/errorexecution-failed-for-task-apptransformclasseswithjarmergingfordebug – AniV Jun 14 '17 at 14:08