What is the Default Activity Class Name From AndroidManifest.xml?

Dear All,
I’m new to Android environment, and I want to what is the Default Activity Class Name for my App toe put in Facebook Connect Plugin, I know that it is form AndroidManifest.xml

Here’s Mine:

<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="0.0.1" package="com.ionicframework.toz772825" xmlns:android="http://schemas.android.com/apk/res/android">
    <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
    <uses-permission android:name="android.permission.INTERNET" />
    <application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="CordovaApp" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize">
            <intent-filter android:label="@string/launcher_name">
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
</manifest>

Thanks all

I have the same doubt.

The AndroidManifest is well documented, but you also need to understand that @string/xxxx in the attributes is a reference to a key-value pair defined in the strings file which would be in platforms/android/res/values/strings.xml.

Did you figure this out? I have the same problem in Ionic2 with Facebook ads and I can’t find a MainActivity

Add Android platform
ionic cordova platform add android
and then navigate through platforms/android/src

You may find you main activity package.

HTH

For me it was “MainActivity”