Skip to content

Commit

Permalink
fix: 잘못된 로직 수정 (#276)
Browse files Browse the repository at this point in the history
* feat:  스플래시에서 받아온 게임을 넘겨주는 기능 삭제

* fix: 잘못된 로직 수정

* feat: 시작 액티비티 변경
  • Loading branch information
krrong authored Aug 12, 2023
1 parent 3663518 commit ca29158
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@
android:exported="true"
android:screenOrientation="portrait"
android:theme="@style/Theme.App.Starting">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".presentation.beginadventure.BeginAdventureActivity"
Expand Down Expand Up @@ -69,7 +64,13 @@
<activity
android:name=".presentation.login.LoginActivity"
android:screenOrientation="portrait"
android:exported="false" />
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.kakao.sdk.auth.AuthCodeHandlerActivity"
android:exported="true">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class LoginActivity : AppCompatActivity(), AnalyticsDelegate by DefaultAnalytics
}

private fun navigateHome() {
BeginAdventureActivity.getIntent(this)
val intent = BeginAdventureActivity.getIntent(this)
startActivity(intent)
finish()
}
Expand Down

0 comments on commit ca29158

Please sign in to comment.