Android

개발 스크랩/React Native

[React Native] 안드로이드 Release에서 Firebase Authentication (구글 로그인) 이 되지 않는 문제

프로덕션 빌드에서만 Firebase Authentication (구글 로그인) 이 되지 않는 문제발단 및 전개 React Native 를 활용해 토이 프로젝트를 진행하고 있다. Firebase 의 Authentication 기능을 활용해 구글 로그인을 붙였다. 이전에도 써 본 기능이었기 때문에 별다른 어려움은 없었다. 로컬ricale.kr

카테고리 없음

[React Native] Android - 잘못된 버전의 SoLoader SDK - 앱이 64비트 전용 기기에서 비정상 종료를 일으킬 수 있는 SoLoader SDK 버전을 사용합니다. 이 문제를 해결하려면 SoLoader SDK를 버전 0.10.4 이상으로 업데이트하세요.

Bad version of the SoLoader SDK causing crashes on 64-bit devices - Error on Play Console during app reviewI'm experiencing an issue outdated version of the SoLoader SDK. The error message suggests updating the SoLoader SDK to version 0.10.4 or higher. Below are the details of the issue and what I've tr...stackoverflow.com

개발 스크랩/React Native

[React Native] release 버전에서 axios 사용 시 에러 발생 해결

[React Native] release 버전에서 axios 사용 시 에러 발생 해결개발을 완료 후 debug mode 로 테스트 시 잘 되던 api 호출이, release 모드로 빌드하니 되지 않음 # run debug mode react-native run-android # run release mode & build .apk file react-native run-android --variant=release api 호출을bocoder.tistory.com

개발 스크랩/React Native

[React Native] Android ./gradlew bundleRelease 시 Error: Duplicate resources 해결법

React Native : Error: Duplicate resources - AndroidI was trying to create a release apk file from Android but when I create a release apk with PNG image I'm getting Duplicate Resource error. Initially I thought this is happening because I made a mi...stackoverflow.com

개발 스크랩/기타

[Android] if (exception instanceof FirebaseAuthUserCollisionException collEx) 에러 해결법

네, 이 오류는 Java 버전과 관련이 있습니다. 패턴 매칭을 사용한 `instanceof` 문법은 Java 16부터 지원되는 기능입니다. 현재 사용 중인 Java 버전이 16 미만인 것 같습니다.이 문제를 해결하기 위해 코드를 다음과 같이 수정할 수 있습니다:```java:path/to/your/fileif (exception instanceof FirebaseAuthUserCollisionException) {    FirebaseAuthUserCollisionException collEx = (FirebaseAuthUserCollisionException) exception;    // collEx를 사용한 코드}```이 방식은 모든 Java 버전에서 작동합니다. 먼저 `instanceof`로 타입..

개발 스크랩/React Native

[Android] 실제 기기 localhost 접속 안 될 때

adb devicesadb reverse tcp:3000 tcp:3000adb -s RF9X300VWZF reverse tcp:3000 tcp:3000

개발 스크랩/React Native

[React Native] Android sdk 34 java.lang.RuntimeException:Requested enabled DevSupportManager, but BridgeDevSupportManager class was not found or could not be created 에러 해결 방법

Android sdk 34 java.lang.RuntimeException:Requested enabled DevSupportManager, but BridgeDevSupportManager class was not found oAfter upgrading the Android SDK from version 33 to 34, the app crashes on Android 34, although it runs smoothly on Android 33. the following changes have been made: buildscript { ext {stackoverflow.com

inkyoung
'Android' 태그의 글 목록