Skip to content

Commit

Permalink
[chore] : #3 패키지 구조 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
1971123-seongmin committed Oct 24, 2024
1 parent 17f90f2 commit b3d5e18
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
6 changes: 3 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
android:theme="@style/Theme.ANDANDROID"
tools:targetApi="31">
<activity
android:name=".presentation.screen.MyPageActivity"
android:name=".presentation.screen.mypage.MyPageActivity"
android:exported="false"
android:label="MyPageActivity"
android:theme="@style/Theme.ANDANDROID" />
<activity
android:name=".presentation.screen.SignupActivity"
android:name=".presentation.screen.signup.SignupActivity"
android:exported="false"
android:label="SignupActivity"
android:theme="@style/Theme.ANDANDROID" />
<activity
android:name=".presentation.screen.SigninActivity"
android:name=".presentation.screen.signin.SigninActivity"
android:exported="false"
android:label="SigninActivity"
android:theme="@style/Theme.ANDANDROID" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import androidx.navigation.compose.NavHost
import androidx.navigation.compose.composable
import androidx.navigation.compose.rememberNavController
import androidx.navigation.toRoute
import org.sopt.and.presentation.screen.MyPageScreen
import org.sopt.and.presentation.screen.SignInScreen
import org.sopt.and.presentation.screen.SignUpScreen
import org.sopt.and.presentation.screen.mypage.MyPageScreen
import org.sopt.and.presentation.screen.signin.SignInScreen
import org.sopt.and.presentation.screen.signup.SignUpScreen
import org.sopt.and.presentation.viewmodel.SignInViewModel
import org.sopt.and.presentation.viewmodel.SignUpViewModel

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.and.presentation.screen
package org.sopt.and.presentation.screen.mypage

import android.os.Bundle
import androidx.activity.ComponentActivity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.and.presentation.screen
package org.sopt.and.presentation.screen.mypage

import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Arrangement
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.and.presentation.screen
package org.sopt.and.presentation.screen.signin

import android.content.Intent
import android.os.Bundle
Expand Down Expand Up @@ -50,6 +50,8 @@ import org.sopt.and.R
import org.sopt.and.presentation.component.RoundedButton
import org.sopt.and.presentation.component.SignTextField
import org.sopt.and.presentation.component.Toolbar
import org.sopt.and.presentation.screen.signup.SignupActivity
import org.sopt.and.presentation.screen.mypage.MyPageActivity
import org.sopt.and.ui.theme.ANDANDROIDTheme
import org.sopt.and.ui.theme.Black
import org.sopt.and.ui.theme.White
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.sopt.and.presentation.screen
package org.sopt.and.presentation.screen.signin

import android.util.Log
import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.and.presentation.screen
package org.sopt.and.presentation.screen.signup

import android.content.Intent
import android.os.Bundle
Expand Down Expand Up @@ -45,6 +45,7 @@ import org.sopt.and.R
import org.sopt.and.presentation.component.RoundedButton
import org.sopt.and.presentation.component.SignTextField
import org.sopt.and.presentation.component.Toolbar
import org.sopt.and.presentation.screen.signin.SigninActivity
import org.sopt.and.ui.theme.ANDANDROIDTheme
import org.sopt.and.ui.theme.Black
import org.sopt.and.ui.theme.White
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.and.presentation.screen
package org.sopt.and.presentation.screen.signup

import android.util.Log
import androidx.compose.foundation.Image
Expand Down

0 comments on commit b3d5e18

Please sign in to comment.