전체 글45 개인정보처리방침 Privacy PolicyLast updated: November 5, 2025This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accord.. 2025. 11. 5. 개인정보처리방침 개인정보처리방침 (Korean)최종 업데이트일: 2025-11-04본 개인정보처리방침은 지게차 운전기능사 필기 문제복원(이하 “앱”, “당사”, “우리”)이 개인정보를 어떤 방식으로 수집·이용·보호하는지와 이용자의 권리를 설명합니다. 본 앱은 교육용으로, 문제 제공 및 채점 기능만 제공합니다.1. 회사(개인정보 처리자)회사/개발자: Weed문의 이메일: rlatmdfbf0709@gmail.com2. 대상 연령본 서비스는 만 16세 이상을 대상으로 하며, 만 16세 미만을 대상으로 하지 않습니다. 만 16세 미만 이용자의 정보 수집 사실을 알게 되면 지체 없이 삭제합니다.3. 수집하는 정보본 앱은 기본적으로 회원가입을 받지 않으며, 이름/이메일 등 식별 가능한 개인정보를 앱 내에서 수집하지 않습니다.다만 .. 2025. 11. 4. 개인정보처리방침 Combo Catch: Boss Rush 개인정보처리방침 최종 수정일: 2025-11-01 · 개발자: Weed · 문의: rlatmdfbf0709@gmail.com 1. 개인정보의 수집 및 이용 목적 Combo Catch: Boss Rush(이하 “본 앱”)는 사용자의 개인정보를 직접적으로 수집하지 않습니다. 본 앱은 회원가입, 로그인, 위치 정보, 연락처, 사진, 파일 등의 개인정보를 요구하지 않습니다. 2. 광고 서비스 본 앱은 Google AdMob 광고 서비스를 이용합니다. AdMob은 맞춤형 광고 제공을 위해 광고 ID(Advertising ID) 등 비개인식별 정보를 수집할 수 있으며, 해당 데이터 처리는 Google의 개인정보처리방.. 2025. 11. 1. 개인정보처리방침 Privacy PolicyLast updated: September 11, 2025This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in acco.. 2025. 9. 11. 개인정보처리방침 Privacy PolicyLast updated: September 09, 2025This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in acco.. 2025. 9. 9. 개인정보처리방침 Privacy PolicyLast updated: September 01, 2025This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in acco.. 2025. 9. 1. 개인정보처리방침 Privacy PolicyLast updated: August 22, 2025This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accorda.. 2025. 8. 22. Git 사용법 1) 로컬 새 프로젝트를 원격(예: GitHub)으로 첫 업로드# 프로젝트 폴더로 이동cd # Git 초기화 + 파일 추가 + 커밋git initgit add .git commit -m "첫 커밋"# 브랜치 이름을 main으로(원하면 master 유지해도 됨)git branch -M main# 원격 저장소 연결 (HTTPS 또는 SSH 중 하나)git remote add origin https://github.com//.git# 또는# git remote add origin git@github.com:/.git# 첫 푸시(업스트림 설정)git push -u origin main 2) 이미 원격 연결된 저장소에 변경사항 푸시git add .git commit -m "변경 내용"git push# (현재 브랜.. 2025. 8. 22. 플러터 글자깨짐 오류 해결법 글리프 오류 해결법 앱을 잠시 나갔다가 들어오니 글자가 깨지는 오류가 있어서 해결했다. 이런식으로 글자가 깨져서 Text를 TitleOnResume로 바꾸어 주었다.class TitleOnResume extends StatelessWidget { const TitleOnResume( this.text, { super.key, this.style, this.textAlign, this.maxLines, this.overflow, }); final String text; final TextStyle? style; final TextAlign? textAlign; final int? maxLines; final Text.. 2025. 8. 22. 이전 1 2 3 4 5 다음