Skip to content

Commit

Permalink
Fix #302: Start SplashActivity upon opening the app (#303)
Browse files Browse the repository at this point in the history
in the main app manifest.
  • Loading branch information
BenHenning authored Nov 5, 2019
1 parent 1125d64 commit 5b26828
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,14 @@
android:supportsRtl="true"
android:theme="@style/OppiaTheme">
<activity android:name=".home.ContinuePlayingActivity" />
<activity android:name=".topic.conceptcard.testing.ConceptCardFragmentTestActivity" />
<activity android:name=".testing.ContentCardTestActivity" />
<activity android:name=".player.state.testing.StateFragmentTestActivity" />
<activity android:name=".player.exploration.ExplorationActivity" />
<activity android:name=".topic.questionplayer.QuestionPlayerActivity" />
<activity android:name=".topic.TopicActivity" />
<activity android:name=".home.HomeActivity" />
<activity android:name=".player.audio.testing.AudioFragmentTestActivity" />
<activity android:name=".testing.InputInteractionViewTestActivity" />
<activity android:name=".player.exploration.ExplorationActivity" />
<activity android:name=".player.state.testing.StateFragmentTestActivity" />
<activity android:name=".profile.ProfileActivity" />
<activity android:name=".story.StoryActivity" />
<activity android:name=".home.HomeActivity">
<activity
android:name=".splash.SplashActivity"
android:theme="@style/SplashScreenTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -32,10 +29,13 @@
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".splash.SplashActivity"
android:theme="@style/SplashScreenTheme" />
<activity android:name=".testing.HtmlParserTestActivity" />
<activity android:name=".story.StoryActivity" />
<activity android:name=".testing.BindableAdapterTestActivity" />
<activity android:name=".testing.ContentCardTestActivity" />
<activity android:name=".testing.HtmlParserTestActivity" />
<activity android:name=".testing.InputInteractionViewTestActivity" />
<activity android:name=".topic.TopicActivity" />
<activity android:name=".topic.conceptcard.testing.ConceptCardFragmentTestActivity" />
<activity android:name=".topic.questionplayer.QuestionPlayerActivity" />
</application>
</manifest>

0 comments on commit 5b26828

Please sign in to comment.