xamarin.android - How to work with AndroidManifest and Assembly -
base on xamarin studio instruction, follow create androidmanifest looks below.
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versioncode="1" android:versionname="1.0" package="hellomultiscreen.hellomultiscreen"> <uses-sdk /> <application android:label="hellomultiscreen"> <application> <manifest>
i have these questions:
1) how come not list out control or widget google manifest? 2) need edit whenever add additional control or widget textview ? 3) need care order of control or widget of add first or later?
4) need manually add below or self generated?
[assembly: usespermission(manifest.permission.accessfinelocation)] [assembly: usespermission(manifest.permission.accesscoarselocation)]
thanks
quite lot of questions answered in page - http://docs.xamarin.com/guides/android/advanced_topics/working_with_androidmanifest.xml
in general, xamarin auto-generates of file you, using hints in code [activity]
attributes.
i recommend read document above, experiment little , come here if have specific questions/problems.
Comments
Post a Comment