Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7df3da1
기록
mookeunji05 Mar 19, 2026
f87d7ad
feat: 감정우표 구현
mookeunji05 Mar 25, 2026
ed0d9fa
감정 우표 UI 및 클릭 이벤트 구현 완료감정 우표 UI 및 클릭 이벤트 구현 완료
mookeunji05 Apr 1, 2026
9b20c30
감정 우표 UI 및 클릭 이벤트 구현 완료감정 우표 UI 및 클릭 이벤트 구현 완료
mookeunji05 Apr 1, 2026
930ddfb
feat:감정우표 ui구현
mookeunji05 Apr 1, 2026
c74ff8e
2주차 미션 제출
mookeunji05 Apr 1, 2026
147b9fb
fix: README.md 충돌 해결 및 복구
mookeunji05 Apr 1, 2026
a0cb87c
fix: 2주차 피드백 반영 및 코드 수정
mookeunji05 Apr 1, 2026
8858995
상품 목록 기능 및 위시리스트 매니저 추가
mookeunji05 Apr 1, 2026
247767c
Week 2 과제 제출
mookeunji05 Apr 2, 2026
611b5f7
2주차 미션
mookeunji05 Apr 2, 2026
342f644
2주차미션
mookeunji05 Apr 3, 2026
9b171d5
feat: 3주차 미션
mookeunji05 Apr 3, 2026
501f24f
fix: 3주차 미션 수정
mookeunji05 Apr 3, 2026
7592b48
4주차 미션
mookeunji05 Apr 8, 2026
81c6fec
feat: 미션4 수정
mookeunji05 Apr 8, 2026
e9ac2ed
feat: 5주차 미션
mookeunji05 Apr 29, 2026
f8e2151
5주차 수정
mookeunji05 Apr 29, 2026
e66f448
6주차 미션
mookeunji05 May 6, 2026
8828da9
7주차 미션
mookeunji05 May 13, 2026
c1829a1
Fix: 7주차 미션 수정
mookeunji05 May 13, 2026
f04531d
8주차 미션
mookeunji05 May 20, 2026
404d12c
9주차 미션
mookeunji05 May 27, 2026
c6fccfc
feat: 9주차 수정1
mookeunji05 May 27, 2026
4ef0bc7
chore: 9주차 빌드 찌꺼기 파일 대량 청소
mookeunji05 May 27, 2026
4bda536
fix: main 브랜치와 충돌 해결
mookeunji05 May 27, 2026
54e9582
10주차 미션
mookeunji05 Jun 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 0 additions & 94 deletions README.md

This file was deleted.

15 changes: 15 additions & 0 deletions Week7/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
3 changes: 3 additions & 0 deletions Week7/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Week7/.idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Week7/.idea/AndroidProjectSystem.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Week7/.idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Week7/.idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions Week7/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 50 additions & 0 deletions Week7/.idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Week7/.idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Week7/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions Week7/.idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Week7/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Week7/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
64 changes: 64 additions & 0 deletions Week7/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}

android {
namespace = "com.example.myapplication"
compileSdk = 34

defaultConfig {
applicationId = "com.example.myapplication"
minSdk = 24
targetSdk = 34
versionCode = 1
versionName = "1.0"

vectorDrawables.useSupportLibrary = true
}


compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

kotlinOptions {
jvmTarget = "11"
}

buildFeatures {
compose = true
}

composeOptions {

kotlinCompilerExtensionVersion = "1.5.8"
}
}

dependencies {
implementation("androidx.compose.foundation:foundation")

implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("androidx.activity:activity-compose:1.9.0")


implementation(platform("androidx.compose:compose-bom:2024.05.00"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.material3:material3")


implementation("androidx.compose.material:material-icons-extended")

implementation("androidx.compose.ui:ui-tooling-preview")
debugImplementation("androidx.compose.ui:ui-tooling")

implementation("com.google.android.material:material:1.11.0")

implementation("io.coil-kt:coil-compose:2.6.0")

implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
}
21 changes: 21 additions & 0 deletions Week7/app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
Binary file added Week7/app/release/app-release.aab
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package com.example.myapplication

import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4

import org.junit.Test
import org.junit.runner.RunWith

import org.junit.Assert.*

/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.example.myapplication", appContext.packageName)
}
}
Loading