i am new to XamarinStudio to create Android App. Here the questions:
1 What are Manifest and AndroidManifest. How to create them or it is auto created?
How to setUp a Default Activity for the app to display when it is first launch. In Windows Phone, the default Page is called MainPage.xaml.
When I add another Activity into the project, do I have to declare it in Manifest or AndroidManifest?
Thanks
In Eclipse : The default Activity is setUp thru Intent-filter as
intent-filter action android:name="android.intent.action.MAIN" category android:name="android.intent.category.LAUNCHER" intent-filter
How to do it in XamarinStudio?