Errors in Android Manifest

I am getting errors in the Android Manifest section of the Airport app. The error appears at the beginning and ending of this section of code where I enclosed the code with ( ). The first error says “multiple root tags” and the second one says “unexpected end of file”. Can someone please assist? Thanks. -Josh

(<)application>
        <!-- add this: -->
        android:name=".MyApplication"
        <!-- the rest of the file follows -->
        android:allowBackup="true"
        <!-- etc. ... -->
 ( )

You need to add the android:name=".MyApplication" inside the existing application tag. Instead, I think you might have added a second application tag.

It looks like that worked. Thank you!

1 Like