How to identify the applicationId?

1

I'm implementing FireBase in my project, but when registering my application in the FireBase console it asks for the name of the applicationId in>).

help page appears the following message:

  

In general, the name of your package is the applicationId in the " build.gradle " file at the level of your app

But I did not find the build.gradle file in my project.

Can someone tell me where to find the applicationId in Xamarin?

    
asked by anonymous 17.08.2017 / 20:47

1 answer

0

What he is requesting is the name of the Package of your application.

To find it, right click on your project and select Properties .

In the open screen, select Android Manifest and look for the Package name item.

Usually package of your application is the name of it's point (.) itself. If your application is called MyApp , its package will be MyApp.MyApp .     

17.08.2017 / 22:00