Reputation: 2247
I am registering my app on Facebook Developer
, which need to know what my Default Activity. Sorry if it's a stupid question but the Default Activity is my splashscreen (App boot with logo) or the first screen after loading the splash screen?
Upvotes: 0
Views: 60
Reputation: 15668
The one defined by action.MAIN intent in your AndroiManifest. Splashscreen in your case.
Upvotes: 1
Reputation: 2208
Default activity is the starting activity that is defined as "MAIN" inside android manifest file
<activity
.......
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Upvotes: 1