Skip to content

Commit

Permalink
rename: change package structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ksw4015 committed Sep 24, 2024
1 parent ca97462 commit 6bcc846
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
android:theme="@style/Theme.VisitKorea"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:name=".presentation.main.MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.VisitKorea">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package kr.ksw.visitkorea
package kr.ksw.visitkorea.presentation.main

import android.os.Bundle
import androidx.activity.ComponentActivity
Expand All @@ -11,7 +11,7 @@ import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import kr.ksw.visitkorea.ui.theme.VisitKoreaTheme
import kr.ksw.visitkorea.presentation.ui.theme.VisitKoreaTheme

class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package kr.ksw.visitkorea.ui.theme
package kr.ksw.visitkorea.presentation.ui.theme

import androidx.compose.ui.graphics.Color

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package kr.ksw.visitkorea.ui.theme
package kr.ksw.visitkorea.presentation.ui.theme

import android.app.Activity
import android.os.Build
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package kr.ksw.visitkorea.ui.theme
package kr.ksw.visitkorea.presentation.ui.theme

import androidx.compose.material3.Typography
import androidx.compose.ui.text.TextStyle
Expand Down

0 comments on commit 6bcc846

Please sign in to comment.