2025/09 4

Account and Data Deletion Guide(계정 및 데이터 삭제 안내)

Account and Data Deletion GuideThank you for using our service. The Emotion Card app highly values your personal information and emotional data.To delete your account and all associated data, please follow the steps below to complete the deletion process directly within the app.Account Deletion ProcedureLaunch the Emotion Card App: If the app is not installed on your device, please install it fi..

카테고리 없음 2025.09.26

privacy policy 개인정보처리방침 (Emotion Cards)

개인정보처리방침 (Privacy Policy)Emotion Cards는 사용자의 개인정보 보호를 매우 중요하게 생각합니다. 본 개인정보처리방침은 Emotion Cards가 사용자의 데이터를 어떻게 수집, 사용, 공유 및 보호하는지 설명합니다. 본 앱은 구글 플레이의 사용자 데이터 정책을 준수하며, 특히 아동 사용자 보호를 위한 추가적인 조치를 취하고 있습니다.1. 수집하는 정보 (Information We Collect)Emotion Cards는 다음과 같은 사용자 데이터를 수집합니다.AI 기능 사용을 위한 일기 내용: 사용자가 작성하는 일기 내용은 AI 답변 생성을 위해 일시적으로 사용됩니다. 이 데이터는 답변 생성 후 즉시 삭제되며, 사용자의 일기 내용은 서버에 저장되지 않습니다.앱 사용 통계: 익명..

카테고리 없음 2025.09.25

<Flutter> json_serializable, g 파일 생성 불가

Flutter 개발 중 json_serializable 사용시 g 파일 생성 안됨Flutter에서 json_serializable을 사용해 코드를 자동 생성하려고 했으나 직렬화/역직렬화 함수를 담은 '.g.dart' 파일이 생기지 않는 문제가 발생했다. dart run build_runner build 명령어실행해도 outputs는 0이었다. 원인파악flutter pub get을 실행하고 build_runner를 돌렸지만, 터미널에는 0 outputs, 76 skipped 같은 메시지만 반복해서 나타났다. 분명히 pubspec.yaml 파일에 build_runner와 json_serializable을 제대로 추가했고, 모델 파일에 @JsonSerializable() 어노테이션과 part 구문도 정확히 작..