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 15, 2024
1 parent 40a2c20 commit 90dabfd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
14 changes: 10 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET"/>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".application.WeSpotApplication"
android:allowBackup="true"
Expand All @@ -12,8 +12,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 @@ -24,6 +25,11 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

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

</application>

</manifest>
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 90dabfd

Please sign in to comment.