diff --git a/chanho/Example_UI_Compose/.idea/.gitignore b/chanho/practice-apps/counter_compose/.idea/.gitignore
similarity index 100%
rename from chanho/Example_UI_Compose/.idea/.gitignore
rename to chanho/practice-apps/counter_compose/.idea/.gitignore
diff --git a/chanho/Example_UI_Compose/.idea/compiler.xml b/chanho/practice-apps/counter_compose/.idea/compiler.xml
similarity index 100%
rename from chanho/Example_UI_Compose/.idea/compiler.xml
rename to chanho/practice-apps/counter_compose/.idea/compiler.xml
diff --git a/chanho/practice-apps/counter_compose/.idea/gradle.xml b/chanho/practice-apps/counter_compose/.idea/gradle.xml
new file mode 100644
index 0000000..6d89050
--- /dev/null
+++ b/chanho/practice-apps/counter_compose/.idea/gradle.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/chanho/Example_UI_Compose/.idea/kotlinc.xml b/chanho/practice-apps/counter_compose/.idea/kotlinc.xml
similarity index 100%
rename from chanho/Example_UI_Compose/.idea/kotlinc.xml
rename to chanho/practice-apps/counter_compose/.idea/kotlinc.xml
diff --git a/chanho/practice-apps/counter_compose/.idea/misc.xml b/chanho/practice-apps/counter_compose/.idea/misc.xml
new file mode 100644
index 0000000..0ad17cb
--- /dev/null
+++ b/chanho/practice-apps/counter_compose/.idea/misc.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/chanho/practice-apps/counter_compose/.idea/vcs.xml b/chanho/practice-apps/counter_compose/.idea/vcs.xml
new file mode 100644
index 0000000..c2365ab
--- /dev/null
+++ b/chanho/practice-apps/counter_compose/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/chanho/Example_UI_Compose/app/.gitignore b/chanho/practice-apps/counter_compose/app/.gitignore
similarity index 100%
rename from chanho/Example_UI_Compose/app/.gitignore
rename to chanho/practice-apps/counter_compose/app/.gitignore
diff --git a/chanho/practice-apps/app/build.gradle.kts b/chanho/practice-apps/counter_compose/app/build.gradle.kts
similarity index 100%
rename from chanho/practice-apps/app/build.gradle.kts
rename to chanho/practice-apps/counter_compose/app/build.gradle.kts
diff --git a/chanho/Example_UI_Compose/app/proguard-rules.pro b/chanho/practice-apps/counter_compose/app/proguard-rules.pro
similarity index 100%
rename from chanho/Example_UI_Compose/app/proguard-rules.pro
rename to chanho/practice-apps/counter_compose/app/proguard-rules.pro
diff --git a/chanho/practice-apps/app/src/androidTest/java/com/example/counter_compose/ExampleInstrumentedTest.kt b/chanho/practice-apps/counter_compose/app/src/androidTest/java/com/example/counter_compose/ExampleInstrumentedTest.kt
similarity index 100%
rename from chanho/practice-apps/app/src/androidTest/java/com/example/counter_compose/ExampleInstrumentedTest.kt
rename to chanho/practice-apps/counter_compose/app/src/androidTest/java/com/example/counter_compose/ExampleInstrumentedTest.kt
diff --git a/chanho/practice-apps/app/src/main/AndroidManifest.xml b/chanho/practice-apps/counter_compose/app/src/main/AndroidManifest.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/AndroidManifest.xml
rename to chanho/practice-apps/counter_compose/app/src/main/AndroidManifest.xml
diff --git a/chanho/practice-apps/app/src/main/java/com/example/counter_compose/CounterScreen.kt b/chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/CounterScreen.kt
similarity index 100%
rename from chanho/practice-apps/app/src/main/java/com/example/counter_compose/CounterScreen.kt
rename to chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/CounterScreen.kt
diff --git a/chanho/practice-apps/app/src/main/java/com/example/counter_compose/MainActivity.kt b/chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/MainActivity.kt
similarity index 100%
rename from chanho/practice-apps/app/src/main/java/com/example/counter_compose/MainActivity.kt
rename to chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/MainActivity.kt
diff --git a/chanho/practice-apps/app/src/main/java/com/example/counter_compose/MainViewModel.kt b/chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/MainViewModel.kt
similarity index 100%
rename from chanho/practice-apps/app/src/main/java/com/example/counter_compose/MainViewModel.kt
rename to chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/MainViewModel.kt
diff --git a/chanho/practice-apps/app/src/main/java/com/example/counter_compose/ui/theme/Color.kt b/chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/ui/theme/Color.kt
similarity index 100%
rename from chanho/practice-apps/app/src/main/java/com/example/counter_compose/ui/theme/Color.kt
rename to chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/ui/theme/Color.kt
diff --git a/chanho/practice-apps/app/src/main/java/com/example/counter_compose/ui/theme/Theme.kt b/chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/ui/theme/Theme.kt
similarity index 100%
rename from chanho/practice-apps/app/src/main/java/com/example/counter_compose/ui/theme/Theme.kt
rename to chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/ui/theme/Theme.kt
diff --git a/chanho/practice-apps/app/src/main/java/com/example/counter_compose/ui/theme/Type.kt b/chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/ui/theme/Type.kt
similarity index 100%
rename from chanho/practice-apps/app/src/main/java/com/example/counter_compose/ui/theme/Type.kt
rename to chanho/practice-apps/counter_compose/app/src/main/java/com/example/counter_compose/ui/theme/Type.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/res/drawable/ic_launcher_background.xml b/chanho/practice-apps/counter_compose/app/src/main/res/drawable/ic_launcher_background.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/drawable/ic_launcher_background.xml
rename to chanho/practice-apps/counter_compose/app/src/main/res/drawable/ic_launcher_background.xml
diff --git a/chanho/Example_UI_Compose/app/src/main/res/drawable/ic_launcher_foreground.xml b/chanho/practice-apps/counter_compose/app/src/main/res/drawable/ic_launcher_foreground.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/drawable/ic_launcher_foreground.xml
rename to chanho/practice-apps/counter_compose/app/src/main/res/drawable/ic_launcher_foreground.xml
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-hdpi/ic_launcher.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-hdpi/ic_launcher.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-hdpi/ic_launcher.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-mdpi/ic_launcher.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-mdpi/ic_launcher.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-mdpi/ic_launcher.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
rename to chanho/practice-apps/counter_compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
diff --git a/chanho/Example_UI_Compose/app/src/main/res/values/colors.xml b/chanho/practice-apps/counter_compose/app/src/main/res/values/colors.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/values/colors.xml
rename to chanho/practice-apps/counter_compose/app/src/main/res/values/colors.xml
diff --git a/chanho/practice-apps/app/src/main/res/values/strings.xml b/chanho/practice-apps/counter_compose/app/src/main/res/values/strings.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/values/strings.xml
rename to chanho/practice-apps/counter_compose/app/src/main/res/values/strings.xml
diff --git a/chanho/practice-apps/app/src/main/res/values/themes.xml b/chanho/practice-apps/counter_compose/app/src/main/res/values/themes.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/values/themes.xml
rename to chanho/practice-apps/counter_compose/app/src/main/res/values/themes.xml
diff --git a/chanho/Example_UI_Compose/app/src/main/res/xml/backup_rules.xml b/chanho/practice-apps/counter_compose/app/src/main/res/xml/backup_rules.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/xml/backup_rules.xml
rename to chanho/practice-apps/counter_compose/app/src/main/res/xml/backup_rules.xml
diff --git a/chanho/Example_UI_Compose/app/src/main/res/xml/data_extraction_rules.xml b/chanho/practice-apps/counter_compose/app/src/main/res/xml/data_extraction_rules.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/xml/data_extraction_rules.xml
rename to chanho/practice-apps/counter_compose/app/src/main/res/xml/data_extraction_rules.xml
diff --git a/chanho/practice-apps/app/src/test/java/com/example/counter_compose/ExampleUnitTest.kt b/chanho/practice-apps/counter_compose/app/src/test/java/com/example/counter_compose/ExampleUnitTest.kt
similarity index 100%
rename from chanho/practice-apps/app/src/test/java/com/example/counter_compose/ExampleUnitTest.kt
rename to chanho/practice-apps/counter_compose/app/src/test/java/com/example/counter_compose/ExampleUnitTest.kt
diff --git a/chanho/Example_UI_Compose/build.gradle.kts b/chanho/practice-apps/counter_compose/build.gradle.kts
similarity index 100%
rename from chanho/Example_UI_Compose/build.gradle.kts
rename to chanho/practice-apps/counter_compose/build.gradle.kts
diff --git a/chanho/Example_UI_Compose/gradle.properties b/chanho/practice-apps/counter_compose/gradle.properties
similarity index 100%
rename from chanho/Example_UI_Compose/gradle.properties
rename to chanho/practice-apps/counter_compose/gradle.properties
diff --git a/chanho/Example_UI_Compose/gradle/wrapper/gradle-wrapper.jar b/chanho/practice-apps/counter_compose/gradle/wrapper/gradle-wrapper.jar
similarity index 100%
rename from chanho/Example_UI_Compose/gradle/wrapper/gradle-wrapper.jar
rename to chanho/practice-apps/counter_compose/gradle/wrapper/gradle-wrapper.jar
diff --git a/chanho/practice-apps/gradle/wrapper/gradle-wrapper.properties b/chanho/practice-apps/counter_compose/gradle/wrapper/gradle-wrapper.properties
similarity index 100%
rename from chanho/practice-apps/gradle/wrapper/gradle-wrapper.properties
rename to chanho/practice-apps/counter_compose/gradle/wrapper/gradle-wrapper.properties
diff --git a/chanho/Example_UI_Compose/gradlew b/chanho/practice-apps/counter_compose/gradlew
similarity index 100%
rename from chanho/Example_UI_Compose/gradlew
rename to chanho/practice-apps/counter_compose/gradlew
diff --git a/chanho/Example_UI_Compose/gradlew.bat b/chanho/practice-apps/counter_compose/gradlew.bat
similarity index 100%
rename from chanho/Example_UI_Compose/gradlew.bat
rename to chanho/practice-apps/counter_compose/gradlew.bat
diff --git a/chanho/practice-apps/settings.gradle.kts b/chanho/practice-apps/counter_compose/settings.gradle.kts
similarity index 100%
rename from chanho/practice-apps/settings.gradle.kts
rename to chanho/practice-apps/counter_compose/settings.gradle.kts
diff --git a/chanho/Example_UI_Compose/.gitignore b/chanho/practice-apps/example_ui_compose/.gitignore
similarity index 100%
rename from chanho/Example_UI_Compose/.gitignore
rename to chanho/practice-apps/example_ui_compose/.gitignore
diff --git a/chanho/practice-apps/example_ui_compose/.idea/.gitignore b/chanho/practice-apps/example_ui_compose/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/chanho/practice-apps/example_ui_compose/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/chanho/practice-apps/example_ui_compose/.idea/.name b/chanho/practice-apps/example_ui_compose/.idea/.name
new file mode 100644
index 0000000..fd2fe50
--- /dev/null
+++ b/chanho/practice-apps/example_ui_compose/.idea/.name
@@ -0,0 +1 @@
+Example_UI_Compose
\ No newline at end of file
diff --git a/chanho/practice-apps/example_ui_compose/.idea/compiler.xml b/chanho/practice-apps/example_ui_compose/.idea/compiler.xml
new file mode 100644
index 0000000..b589d56
--- /dev/null
+++ b/chanho/practice-apps/example_ui_compose/.idea/compiler.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/chanho/Example_UI_Compose/.idea/gradle.xml b/chanho/practice-apps/example_ui_compose/.idea/gradle.xml
similarity index 100%
rename from chanho/Example_UI_Compose/.idea/gradle.xml
rename to chanho/practice-apps/example_ui_compose/.idea/gradle.xml
diff --git a/chanho/Example_UI_Compose/.idea/inspectionProfiles/Project_Default.xml b/chanho/practice-apps/example_ui_compose/.idea/inspectionProfiles/Project_Default.xml
similarity index 100%
rename from chanho/Example_UI_Compose/.idea/inspectionProfiles/Project_Default.xml
rename to chanho/practice-apps/example_ui_compose/.idea/inspectionProfiles/Project_Default.xml
diff --git a/chanho/practice-apps/example_ui_compose/.idea/kotlinc.xml b/chanho/practice-apps/example_ui_compose/.idea/kotlinc.xml
new file mode 100644
index 0000000..0fc3113
--- /dev/null
+++ b/chanho/practice-apps/example_ui_compose/.idea/kotlinc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/chanho/Example_UI_Compose/.idea/misc.xml b/chanho/practice-apps/example_ui_compose/.idea/misc.xml
similarity index 100%
rename from chanho/Example_UI_Compose/.idea/misc.xml
rename to chanho/practice-apps/example_ui_compose/.idea/misc.xml
diff --git a/chanho/Example_UI_Compose/.idea/vcs.xml b/chanho/practice-apps/example_ui_compose/.idea/vcs.xml
similarity index 75%
rename from chanho/Example_UI_Compose/.idea/vcs.xml
rename to chanho/practice-apps/example_ui_compose/.idea/vcs.xml
index b2bdec2..def3818 100644
--- a/chanho/Example_UI_Compose/.idea/vcs.xml
+++ b/chanho/practice-apps/example_ui_compose/.idea/vcs.xml
@@ -1,6 +1,7 @@
+
\ No newline at end of file
diff --git a/chanho/practice-apps/app/.gitignore b/chanho/practice-apps/example_ui_compose/app/.gitignore
similarity index 100%
rename from chanho/practice-apps/app/.gitignore
rename to chanho/practice-apps/example_ui_compose/app/.gitignore
diff --git a/chanho/Example_UI_Compose/app/build.gradle.kts b/chanho/practice-apps/example_ui_compose/app/build.gradle.kts
similarity index 100%
rename from chanho/Example_UI_Compose/app/build.gradle.kts
rename to chanho/practice-apps/example_ui_compose/app/build.gradle.kts
diff --git a/chanho/practice-apps/app/proguard-rules.pro b/chanho/practice-apps/example_ui_compose/app/proguard-rules.pro
similarity index 100%
rename from chanho/practice-apps/app/proguard-rules.pro
rename to chanho/practice-apps/example_ui_compose/app/proguard-rules.pro
diff --git a/chanho/Example_UI_Compose/app/src/androidTest/java/com/example/example_ui_compose/ExampleInstrumentedTest.kt b/chanho/practice-apps/example_ui_compose/app/src/androidTest/java/com/example/example_ui_compose/ExampleInstrumentedTest.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/androidTest/java/com/example/example_ui_compose/ExampleInstrumentedTest.kt
rename to chanho/practice-apps/example_ui_compose/app/src/androidTest/java/com/example/example_ui_compose/ExampleInstrumentedTest.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/AndroidManifest.xml b/chanho/practice-apps/example_ui_compose/app/src/main/AndroidManifest.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/AndroidManifest.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/AndroidManifest.xml
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/AllDestination.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/AllDestination.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/AllDestination.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/AllDestination.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/MainActivity.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/MainActivity.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/MainActivity.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/MainActivity.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/MainScreen.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/MainScreen.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/MainScreen.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/MainScreen.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/OneScreen.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/OneScreen.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/OneScreen.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/OneScreen.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/OneViewModel.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/OneViewModel.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/OneViewModel.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/OneViewModel.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/SetUpNavGraph.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/SetUpNavGraph.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/SetUpNavGraph.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/SetUpNavGraph.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/TwoScreen.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/TwoScreen.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/TwoScreen.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/TwoScreen.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Color.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Color.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Color.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Color.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Theme.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Theme.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Theme.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Theme.kt
diff --git a/chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Type.kt b/chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Type.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Type.kt
rename to chanho/practice-apps/example_ui_compose/app/src/main/java/com/example/example_ui_compose/ui/theme/Type.kt
diff --git a/chanho/practice-apps/app/src/main/res/drawable/ic_launcher_background.xml b/chanho/practice-apps/example_ui_compose/app/src/main/res/drawable/ic_launcher_background.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/drawable/ic_launcher_background.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/drawable/ic_launcher_background.xml
diff --git a/chanho/practice-apps/app/src/main/res/drawable/ic_launcher_foreground.xml b/chanho/practice-apps/example_ui_compose/app/src/main/res/drawable/ic_launcher_foreground.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/drawable/ic_launcher_foreground.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/drawable/ic_launcher_foreground.xml
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-hdpi/ic_launcher.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-hdpi/ic_launcher.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-hdpi/ic_launcher.webp
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-mdpi/ic_launcher.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-mdpi/ic_launcher.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-mdpi/ic_launcher.webp
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
diff --git a/chanho/practice-apps/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
diff --git a/chanho/practice-apps/app/src/main/res/values/colors.xml b/chanho/practice-apps/example_ui_compose/app/src/main/res/values/colors.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/values/colors.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/values/colors.xml
diff --git a/chanho/Example_UI_Compose/app/src/main/res/values/strings.xml b/chanho/practice-apps/example_ui_compose/app/src/main/res/values/strings.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/values/strings.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/values/strings.xml
diff --git a/chanho/Example_UI_Compose/app/src/main/res/values/themes.xml b/chanho/practice-apps/example_ui_compose/app/src/main/res/values/themes.xml
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/main/res/values/themes.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/values/themes.xml
diff --git a/chanho/practice-apps/app/src/main/res/xml/backup_rules.xml b/chanho/practice-apps/example_ui_compose/app/src/main/res/xml/backup_rules.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/xml/backup_rules.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/xml/backup_rules.xml
diff --git a/chanho/practice-apps/app/src/main/res/xml/data_extraction_rules.xml b/chanho/practice-apps/example_ui_compose/app/src/main/res/xml/data_extraction_rules.xml
similarity index 100%
rename from chanho/practice-apps/app/src/main/res/xml/data_extraction_rules.xml
rename to chanho/practice-apps/example_ui_compose/app/src/main/res/xml/data_extraction_rules.xml
diff --git a/chanho/Example_UI_Compose/app/src/test/java/com/example/example_ui_compose/ExampleUnitTest.kt b/chanho/practice-apps/example_ui_compose/app/src/test/java/com/example/example_ui_compose/ExampleUnitTest.kt
similarity index 100%
rename from chanho/Example_UI_Compose/app/src/test/java/com/example/example_ui_compose/ExampleUnitTest.kt
rename to chanho/practice-apps/example_ui_compose/app/src/test/java/com/example/example_ui_compose/ExampleUnitTest.kt
diff --git a/chanho/practice-apps/build.gradle.kts b/chanho/practice-apps/example_ui_compose/build.gradle.kts
similarity index 100%
rename from chanho/practice-apps/build.gradle.kts
rename to chanho/practice-apps/example_ui_compose/build.gradle.kts
diff --git a/chanho/practice-apps/gradle.properties b/chanho/practice-apps/example_ui_compose/gradle.properties
similarity index 100%
rename from chanho/practice-apps/gradle.properties
rename to chanho/practice-apps/example_ui_compose/gradle.properties
diff --git a/chanho/practice-apps/gradle/wrapper/gradle-wrapper.jar b/chanho/practice-apps/example_ui_compose/gradle/wrapper/gradle-wrapper.jar
similarity index 100%
rename from chanho/practice-apps/gradle/wrapper/gradle-wrapper.jar
rename to chanho/practice-apps/example_ui_compose/gradle/wrapper/gradle-wrapper.jar
diff --git a/chanho/Example_UI_Compose/gradle/wrapper/gradle-wrapper.properties b/chanho/practice-apps/example_ui_compose/gradle/wrapper/gradle-wrapper.properties
similarity index 100%
rename from chanho/Example_UI_Compose/gradle/wrapper/gradle-wrapper.properties
rename to chanho/practice-apps/example_ui_compose/gradle/wrapper/gradle-wrapper.properties
diff --git a/chanho/practice-apps/gradlew b/chanho/practice-apps/example_ui_compose/gradlew
similarity index 100%
rename from chanho/practice-apps/gradlew
rename to chanho/practice-apps/example_ui_compose/gradlew
diff --git a/chanho/practice-apps/gradlew.bat b/chanho/practice-apps/example_ui_compose/gradlew.bat
similarity index 100%
rename from chanho/practice-apps/gradlew.bat
rename to chanho/practice-apps/example_ui_compose/gradlew.bat
diff --git a/chanho/Example_UI_Compose/settings.gradle.kts b/chanho/practice-apps/example_ui_compose/settings.gradle.kts
similarity index 100%
rename from chanho/Example_UI_Compose/settings.gradle.kts
rename to chanho/practice-apps/example_ui_compose/settings.gradle.kts