728x90
1. apk 뽑는 블로그 그대로 따라했음
https://bomjjack.github.io/programming/2018/01/06/rn-android-app-release/
2. apk 뽑기는 성공했는데 api url이 https가 아닌 http 여서 통신이 안됐음.
안드로이드 release 버전에서는 http 통신이 기본적으로 안됨. 그래서 설정을 해줘야 함!
해결책 -> github.com/facebook/react-native/issues/24408#issuecomment-537081276
3. 2번 해결하고 다시 1번 블로그에서 apk 뽑는 명령어 실행하면 apk 뽑기 성공!
4.
에러) app:transformClassesWithMultidexlistForRelease
> Task :app:transformClassesWithMultidexlistForRelease FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:transformClassesWithMultidexlistForRelease'.
> GC overhead limit exceeded
이런 에러 났다.
해결 블로기!
https://codechacha.com/ko/how-to-solve-outofmemory-error-while-building-in-android/
'Develop > React Native' 카테고리의 다른 글
[React Native / Android] 안드로이드 에뮬레이터 오프라인일 때 / Emulator Offline (2) | 2020.07.06 |
---|---|
[React Native] react-navigation 화면이 포커스되었을 때를 감지하기 & 특정 화면에서 돌아왔을 때 api 호출하기 (4) | 2020.07.01 |
[React Native] react-native-svg ProgressCircle로 시계 나타내는 법 / startAngle, endAngle (0) | 2020.05.24 |
[React Native] GraphQL & Apollo & Code Generator 사용법 (0) | 2020.05.11 |
[React Native] WebView 사용법 (0) | 2020.05.11 |