1. Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package [Package name] signatures do not match previously installed version
-> 삽질 많이했는데 기존의 시뮬레이터가 메모리를 잡고있어서 그런거였다. 시뮬레이터 끄고 컴퓨터 껐다 키니까 됨ㅎㅎ
2. failed to read PNG signature: file does not start with PNG signature.
-> 분명 png파일인데 왜 png가 아니라 하는지ㅜ ./android/app/build.gradle에서
android {
buildTypes {
release {
crunchPngs false <-------- 추가!
}
}
}
3. Execution failed for task ':app:packageDebug'
android/app/src/main/AndroidManifest.xml 파일에서 application 태그 안에
4. aab파일 만들기
https://bottlecok.tistory.com/177
[안드로이드/android]Android App Bundle(.aab) 생성하는 방법
[안드로이드/android]Android App Bundle(.aab) 생성하는 방법 Android App Bundle 생성하는 방법 안녕하세요. 오늘은 안드로이드 앱을 생성하는 방법 중에 새로운 방법인 Android App Bundle을 생성하는 방법..
bottlecok.tistory.com
5. Linking.canOpenURL(url) 이 false 뱉음
Linking.canOpenURL returning false when targeting android 30 sdk on React Native
Recently switched our build targets to android 30 to add support for Android 11, now directions and call for phone are not working. The documentation mentions deep linking natively and or the use o...
stackoverflow.com
/android/src/main/AndroidManifest.xml에서 다음 코드 추가
<queries>
'app' 카테고리의 다른 글
unsupported OS version (0) | 2022.01.14 |
---|---|
ipad simulator에서 화면이 꽉 차게 나오지 않을 때 (0) | 2021.12.02 |
react native를 사용한 모바일 앱 개발/배포 (0) | 2021.11.24 |