I was trying to set up firebase, which needed the package name of my current app, except when I went to the android manifest, I did not find the package name line, which shoud be in the second line, is that normal?
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="audio_inspect_app"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
</application>
Usually it's :
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapp">
<application ... >
...
</application>
Not sure what to do about this?
The package name is in your
gradlefile of your project, not in manifest.