I would like to add this to my AndroidManifest:
<activity
android:name="com.facebook.FacebookActivity"
>
</activity>
How can I do that?
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 Require
s you can also use these as attributes on a class or method: [Require("AndroidManifest.ApplicationElement", "...")]