Adding activity to AndroidManifest.xml

I would like to add this to my AndroidManifest:

    <activity
        android:name="com.facebook.FacebookActivity"
        >
    </activity>

How can I do that?

Hey Bjørn!

Depending on where in the file you need it, you can use (in UXL) <Require AndroidManifest.RootElement="..." /> or <Require AndroidManifest.ApplicationElement="..." />. Looks like <activity> goes in the application element so probably the latter in this case. Just like other Requires you can also use these as attributes on a class or method: [Require("AndroidManifest.ApplicationElement", "...")]