AndroidManifest.xml

Declaring activities in AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.myapp">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <!-- Declare your Activity here -->
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <!-- Declare other Activities if needed -->
        <!-- <activity android:name=".AnotherActivity" /> -->

    </application>

</manifest>
  • In the above snippet
    • the android.intent.action.MAIN action indicates that the MainActivity is the entry point of the app
  • This means it is the first Activity launched when the app starts
  • This action is typically used for the home screen of an app
  • While the activity name MainActivity is usually used as an entry point in Android applications
    • this name can be changed
  • Identifying the entry point of an application is very important during penetration testing since testers can better understand the application's:
    • flow
    • functionality
    • overall structure
    • discovery of possible attack surfaces
    • eventually identification of potential vulnerabilities and weaknesses
  • The second property
    android.intent.category.LAUNCHER tells the Android system that this Activity should be listed in the system's app launcher
  • So when the user taps on the application's icon in the launcher
    • this Activity should be started.