본문 바로가기

모바일106

configChanges : 화면 회전시 상태유지 android:configChanges="orientation|keyboardHidden|screenSize" AndroidManifest에 해당부분 적용 2022. 12. 20.
발견된 문제: 데이터 보안 양식 잘못됨 발견된 문제: 데이터 보안 양식 잘못됨 Play Console에서 앱의 데이터 보안 양식을 검토한 결과 데이터 보안 양식의 내용과 앱의 사용자 데이터 수집 및 공유 방식이 일치하지 않음이 확인되었습니다. 모든 앱은 데이터 보안 양식을 정확하게 작성하여 데이터 수집 및 공유 관행을 공개해야 합니다. 이 요구사항은 앱에서 사용자 데이터를 전혀 수집하지 않는 경우에도 적용됩니다. 앱의 데이터 보안 양식에서 수집하는 사용자 데이터임을 명시하지 않은 사용자 데이터가 기기에서 전송된 것이 감지됐습니다. 앱의 데이터 보안 섹션에 앱의 데이터 수집, 공유, 처리 관행을 정확하게 반영해야 합니다. 여기에는 앱에 사용된 서드 파티 라이브러리 또는 SDK를 통해 수집되고 처리되는 데이터가 포함됩니다. 가능한 경우 사용자 데.. 2022. 12. 7.
Stored properties cannot be marked potentially unavailable with '@available' Stored properties cannot be marked potentially unavailable with '@available' 카카오 에러관련 https://devtalk.kakao.com/t/swift5-7-xcode14-beta3/124083/10 Swift5.7 / Xcode14(beta3) 빌드 오류 대응 요청 안녕하세요. 해당 이슈 수정하여 배포한것으로 알고있는데요. 코코아팟 가이드대로 sdk를 설치 했는데요. 최신 버전(2.11.2)으로 안 땡겨오고 2.10.1로 땡겨와져서 빌드시 동일한 에러가 납니다. 혹 devtalk.kakao.com https://developers.kakao.com/docs/latest/ko/sdk-download/ios Kakao Developers 카카오.. 2022. 12. 1.
SDK33버전 이상 setAppCacheEnabled error: cannot find symbol settings.setAppCacheEnabled(false); ^ symbol: method setAppCacheEnabled(boolean) location: variable settings of type WebSettings https://web.dev/appcache-removal/#migration-strategies AppCache 제거 준비하기 Chrome 및 기타 브라우저의 AppCache 제거 계획에 대한 세부정보입니다. web.dev 해당부분 제거 settings.setAppCacheEnabled(false); 2022. 12. 1.
pod deintegrate throws RuntimeError - [Xcodeproj] Unknown object version (56) [2022-11-04 수정] https://stackoverflow.com/questions/73396067/pod-deintegrate-throws-runtimeerror-xcodeproj-unknown-object-version-56 pod deintegrate throws RuntimeError - [Xcodeproj] Unknown object version (56) There is an error when running pod deintegrate under /ios for React Native 0.68.2 project: RuntimeError - [Xcodeproj] Unknown object version (56). /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/ stac.. 2022. 9. 23.
Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies or bubbles. 나의경우 FLAG_ONE_SHOT으로 되어있는 부분을 FLAG_MUTABLE로 변경후 완료 자세한내용 https://developer.and.. 2022. 5. 16.
WEBVIEW에서 WEBRTC 권한관련 https://developer.android.com/reference/android/webkit/PermissionRequest PermissionRequest | Android Developers developer.android.com 들어가자 마자 보이는 저부분 저렇게 해서 안되는거였다. permissionRequest.grant(permissionRequest.getResources()) // This is wrong!!! 변경부분 @Override public void onPermissionRequest(PermissionRequest request) { final String[] requestedResources = request.getResources(); for (String r : req.. 2022. 4. 4.
FCM 오랜만에 예전에만들었던 프로젝트를 다시꺼내와서 실행해보니 다 터져있다 그중 푸쉬관련기능중 예전에 쓰던것은 지우고 해당플러그인으로 변경 https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated GitHub - andrehtissot/cordova-plugin-fcm-with-dependecy-updated: Google FCM Push Notifications Cordova Plugin Google FCM Push Notifications Cordova Plugin. Contribute to andrehtissot/cordova-plugin-fcm-with-dependecy-updated development by creating .. 2022. 3. 10.
'authorizationStatus()' was deprecated in iOS 14.0 https://developer.apple.com/documentation/corelocation/cllocationmanager/1423523-authorizationstatus Apple Developer Documentation developer.apple.com https://www.python2.net/questions-1214864.htm swift - iOS 14에서 사용자 위치 권한 상태 확인 그래서 iOS14에서 사용자 위치에 액세스 할 수 있는지 확인하고 싶었습니다.이 code를 찾았지만 XCode (12)가 다음과 같이 소리칩니다. 'authorizationStatus()' was deprecated in iOS 14.0 code는 다음과 같습니다. f www.python2.net f.. 2021. 6. 7.