Skip to content

Commit

Permalink
[CHORE]#29: AuthActivity 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
flash159483 committed Jul 16, 2024
1 parent 8db17e6 commit bf662b2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
9 changes: 7 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET" />

<application
android:name=".application.WeSpotApplication"
android:allowBackup="true"
Expand All @@ -14,8 +13,9 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.WeSpot">

<activity
android:name=".MainActivity"
android:name=".auth.AuthActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.WeSpot"
Expand All @@ -27,6 +27,11 @@
</intent-filter>
</activity>

<activity
android:name=".MainActivity"
android:exported="false" />


<activity
android:name="com.kakao.sdk.auth.AuthCodeHandlerActivity"
android:launchMode="singleTask"
Expand Down
11 changes: 11 additions & 0 deletions feature/auth/src/main/kotlin/com/bff/wespot/auth/AuthActivity.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.bff.wespot.auth

import android.os.Bundle
import androidx.activity.ComponentActivity

class AuthActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)

}
}

0 comments on commit bf662b2

Please sign in to comment.