본문 바로가기
반응형

전체 글192

Support App - "Tarot Insight" Privacy PolicyThis privacy policy applies to the "Tarot Insight" app (hereby referred to as "Application") for mobile devices that was created by studio ODOC (hereby referred to as "Service Provider") as a Free service. This service is intended for use "AS IS".Information Collection and UseThe Application collects information when you download and use it. This information may include information.. 2025. 4. 20.
Support App - "Archiscale" Privacy PolicyThis privacy policy applies to the "Archiscale" app (hereby referred to as "Application") for mobile devices that was created by studio ODOC (hereby referred to as "Service Provider") as a Free service. This service is intended for use "AS IS".Information Collection and UseThe Application collects information when you download and use it. This information may include information su.. 2025. 4. 15.
Resolving the '._drawable' is not a directory Error in Android Studio on macOS macOS에서 Android Studio 빌드 시 '._drawable' is not a directory 오류 해결하기 안드로이드 스튜디오에서 MacOS를 사용하여 빌드할 때 '.drawable' is not a directory 오류가 발생하는 경우, 이는 MacOS가 생성하는 불필요한 '.'로 시작하는 파일로 인해 발생합니다. 이러한 파일은 리소스 디렉토리에 영향을 주어 빌드 오류를 유발할 수 있습니다. 이 문제를 해결하기 위해 다음과 같은 방법을 사용할 수 있습니다:터미널 명령어를 사용하여 '._' 파일 삭제하기: 프로젝트 디렉토리에서 터미널을 열고 다음 명령어를 실행하여 모든 '._'로 시작하는 파일을 삭제합니다:find . -name '._*' -exec rm -rf {} +또는, 'dot_c.. 2025. 4. 15.
안드로이드 버전별 앨범 접근 권한 설정 가이드 안드로이드 버전별 앨범 접근 권한 설정 가이드1. 안드로이드 버전별 권한 변화안드로이드에서 미디어 파일(이미지, 동영상, 오디오)에 접근하는 방법은 버전별로 다르게 적용됩니다. 안드로이드 12까지는 READ_EXTERNAL_STORAGE 권한만으로 저장소의 모든 파일에 접근할 수 있었지만, 안드로이드 13부터는 미디어 타입별로 권한이 세분화되었습니다. 따라서 개발자는 안드로이드 버전에 맞춰 적절한 권한을 요청해야 합니다.2. 안드로이드 12 (API 31) 이전 버전안드로이드 12 및 그 이전 버전에서는 READ_EXTERNAL_STORAGE 권한을 선언하면 모든 미디어 파일(이미지, 동영상, 오디오)에 접근할 수 있었습니다.이전에는 이 권한만으로 미디어 파일을 읽어오는 데 문제가 없었으나, 안드로이드 .. 2025. 3. 24.
반응형