Is there any way to create PendingIntent for notification or to show notification from "data" layer.
In that layer I don't have activity class.
So can Intent automatically choose one activity that is marked like "default" or "launcher"?
<activity
android:name=".feature.splash.SplashActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>