개발 기타 13

페이스북 시뮬레이터 빌드

https://developers.facebook.com/docs/ios/getting-started/advanced#sim_build 고급 주제 - iOS SDK - 문서 - Facebook for Developers developers.facebook.com Unity 에서 옵션에 시뮬레이터 SDK를 선택하고 빌드 빌드 후 Xcode 로 열어서 시뮬레이터 설정시 실행 시뮬레이터로 실행후 빌드된 데이터가 뽑혀 나온다. 시뮬레이터로 실행후 빌드된 곳을 찾지 못하면 xcode / Preferences / Locations / Derived Data 로 확인 뽑혀진 파일에 위 페이스북 링크데로 하면 됨 이때 위 링크에 적혀 있드시 Command-line App Launcher for Simulator.이 없..

개발 기타/IOS 2021.04.29

ios Appsflyer와 facebook 충돌 버그

앱스플라이어와 페이스북 충돌 버그 ios 사파리에서 페이스북이 로그아웃 상태에서 앱에서 페이스북 로그인시 실패 현상. github.com/AppsFlyerSDK/appsflyer-unity-plugin/blob/master/docs/iOS-Swizzling-Guide.md AppsFlyerSDK/appsflyer-unity-plugin AppsFlyer Unity Plugin. Contribute to AppsFlyerSDK/appsflyer-unity-plugin development by creating an account on GitHub. github.com iOS Swizzling Guide AppsFlyer Unity Plugin uses the iOS life cycle events for ..

개발 기타/IOS 2021.04.27

앱을 삭제 했다 재설치해도 데이터가 남아 있는 문제 해결

앱을 삭제해도 삭제전에 저장되어 있던 정보들이 남아 있는 경우가 있습니다 안드로이드 6.0 부터 AndroidManifest.xml 파일에서 application에 android:allowBackup 속성을 적지 않으면 자동으로 true로 설정됩니다. android:allowBackup="false" android:fullBackupContent="false" 추가 하시면 됩니다. 만약 다른 플러그인들과 충돌이 나면 manifest에 tools:replace="android:allowBackup" 도 추가해 주시면 됩니다. tools 에서 에러가 나면 xmlns:tools="http://schemas.android.com/tools" 이걸 추가해주시면 되구요.