Description
List of all exported components in the application. Exported component are accessible to external applications and present an entry point to the application.
Recommendation
This entry is informative, no recommendations applicable.
Technical details
Exported activities definition in AndroidManifest.xml
:
<activity android:configChanges="0x000004A0" android:exported="true" android:label="@7F100027" android:name="com.ingic.tripcrasher.activities.SplashActivity" android:screenOrientation="1">
<intent-filter>
<action android:name="android.intent.action.MAIN">
</action>
<category android:name="android.intent.category.LAUNCHER">
</category>
</intent-filter>
</activity>
<activity android:exported="true" android:name="com.facebook.CustomTabActivity">
</activity>
<activity android:exported="true" android:name="com.google.android.gms.tagmanager.TagManagerPreviewActivity" android:noHistory="true">
<intent-filter>
<data android:scheme="tagmanager.c.com.application.tripcrasher">
</data>
<action android:name="android.intent.action.VIEW">
</action>
<category android:name="android.intent.category.DEFAULT">
</category>
<category android:name="android.intent.category.BROWSABLE">
</category>
</intent-filter>
</activity>
<activity android:exported="true" android:name="com.google.android.gms.appinvite.PreviewActivity" android:theme="@7F110181">
<intent-filter>
<action android:name="com.google.android.gms.appinvite.ACTION_PREVIEW">
</action>
<category android:name="android.intent.category.DEFAULT">
</category>
</intent-filter>
</activity>
Exported services definition in AndroidManifest.xml
:
<service android:name="com.ingic.tripcrasher.firebase.MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT">
</action>
</intent-filter>
</service>
<service android:name="com.ingic.tripcrasher.firebase.MyFirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT">
</action>
</intent-filter>
</service>
<service android:exported="true" android:name="com.google.firebase.messaging.FirebaseMessagingService">
<intent-filter android:priority="-500">
<action android:name="com.google.firebase.MESSAGING_EVENT">
</action>
</intent-filter>
</service>
<service android:exported="true" android:name="com.google.firebase.iid.FirebaseInstanceIdService">
<intent-filter android:priority="-500">
<action android:name="com.google.firebase.INSTANCE_ID_EVENT">
</action>
</intent-filter>
</service>
<service android:exported="true" android:name="com.google.android.gms.auth.api.signin.RevocationBoundService" android:permission="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION">
</service>
Exported receivers definition in AndroidManifest.xml
:
<receiver android:enabled="true" android:exported="true" android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" android:permission="android.permission.INSTALL_PACKAGES">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER">
</action>
</intent-filter>
</receiver>
<receiver android:exported="true" android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver" android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE">
</action>
<category android:name="com.application.tripcrasher">
</category>
</intent-filter>
</receiver>