본문 바로가기

전체 글208

안드로이드 14 java.lang.SecurityException: Writable dex file '/data/data/packageName/code_cache/.overlay/base.apk/classes3.dex' is not allowed. 안드로이드 14를 넘어오면서 앱을 빌드해서 테스트폰에 실행 후 두번째 앱 빌드부터 에러가 발생하며 팅기는 현상이 발생했다. dex파일이 읽기/쓰기가 가능해서 보안문제가 발생 한 것 같습니다. dex파일을 읽기전용으로 변경해줌으로 오류가 해결되었습니다. 앱을 한번 삭제 후 해당 코드를 적고 재빌드 해주시면 됩니다. val dexOutputDir: File = codeCacheDir dexOutputDir.setReadOnly() 2024. 2. 7.
Xcode linker command failed with exit code 1 (use -v to see invocation) 에러 Podfile파일을 열어보면 맨 위에 # Uncomment the next line to define a global platform for your project # platform :ios, '10.0' 2023. 10. 30.
Xcode 15버전 Sandbox: bash(43130) deny(1) file-write-create 에러 Sandbox: bash(43130) deny(1) file-write-create 프로젝트경로/Pods/resources-to-copy-backhome.txt 해당 에러가 발생했다.. 이게 또 뭔 에러인지 찾아보니 Targets - Build Settings에 가서 Filter에 User script라고 검색해보면 User Script Sandboxing라고 나오는데 이걸 No로 변경해주면 된다. 2023. 10. 24.
Xcode AVFoundation,AVKit import 에러 Cannot load underlying module for 'AVFoundation' 라는 에러가 갑자기 뜨는분들이 계실겁니다. Show live issues 체크해제! 해주세요 2023. 6. 20.