When application is not in foreground and startActivity
is called, app does not show up with new activity. This only happens on low end devices.
What can I do to make sure that the activity is started?
part of Manifest for second activity
<activity
android:name=".OfferActivity"
android:configChanges="orientation|screenSize"
android:label="@string/title_activity_offer"
android:launchMode="singleTop"
android:noHistory="true"
android:showOnLockScreen="true"/>