메인 콘텐츠로 건너뛰기

알려진 문제

  • 릴리스 빌드는 실패하지만 디버그는 작동함 — Android 측의 난독화 문제일 가능성이 높습니다. 네이티브 SDK는 난독화할 수 없습니다. ProGuard/DexGuard 규칙 검토.

  • 플러그인 업데이트 후 pod install이 실패함ios/Podfile.lock을 삭제하고 ios/ 디렉토리에서 pod install을 다시 실행하세요.

  • Xcode 16을 사용한 앱 배포 시 비트코드 오류 — Xcode 16 공식 릴리스 이후 (2024년 9월 17일), CocoaPods를 사용할 때 두 개의 내부 종속성 (DeviceProfilingUnicoSdkLogger)의 비트코드 사용으로 인해 App Store 배포가 차단될 수 있습니다. 영구적인 수정이 출시될 때까지 ios/Podfile에 아래 해결 방법을 적용하세요:

post_install do |installer|
bitcode_strip_path = `xcrun --find bitcode_strip`.chop!
def strip_bitcode_from_framework(bitcode_strip_path, framework_relative_path)
framework_path = File.join(Dir.pwd, framework_relative_path)
command = "#{bitcode_strip_path} #{framework_path} -r -o #{framework_path}"
puts "Stripping bitcode: #{command}"
system(command)
end

framework_paths = [
"Pods/unicocheck-ios/DeviceProfiling.xcframework/ios-arm64/DeviceProfiling.framework/DeviceProfiling",
"Pods/unicocheck-ios/UnicoSdkLogger.xcframework/ios-arm64/UnicoSdkLogger.framework/UnicoSdkLogger"
]

framework_paths.each do |framework_relative_path|
strip_bitcode_from_framework(bitcode_strip_path, framework_relative_path)
end
end

post_install do |installer|가 없는 경우 마지막 end 앞에 추가하세요.

출처: Bitrise, Xcode 16 릴리스 노트, Stack Overflow.

  • 플랫폼 채널을 통한 오류 — 일반적으로 기본 플랫폼의 불완전한 구성을 나타냅니다. 특정 설정을 검토하세요.

  • 공식 플러그인 대신 브릿지 사용 시도 — 지원되지 않습니다. 공식 플러그인으로 마이그레이션하세요.