Skip to content

Instantly share code, notes, and snippets.

@nnarendra
nnarendra / Androidmanifest.xml
Last active June 6, 2017 11:45
Android: Scenario where onPause is called but not onStop?
<activity
android:name=".Test"
android:theme="@style/AppTheme.Base.FullScreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>