Daniela Morais
Daniela Morais

Reputation: 2247

What's Default Activity?

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

Answers (2)

Bojan Kseneman
Bojan Kseneman

Reputation: 15668

The one defined by action.MAIN intent in your AndroiManifest. Splashscreen in your case.

Upvotes: 1

N Kaushik
N Kaushik

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

Related Questions