Replies: 1 comment 3 replies
-
안녕하세요 @Astra135 Expo 39 까지는 함께 설치되는데, Expo 40 부터는 별도로 설치해야 하는 것으로 변경되었습니다. 큰 무리 없이 해결하신듯 해서 다행이네요 :) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
5장 5.6.2 데이터 불러오기 예제에서
이런 에러가 뜨네요
Error: The following APIs have moved to separate packages and importing them from the "expo" package is no longer supported: AppLoading.
Add correct versions of these packages to your project using:
expo install expo-app-loading
Change your imports so they use specific packages instead of the "expo" package:
이 API가 별도 패키지로 이동되어서 지원이 안된다고 해서
나와있는 설명대로
expo install expo-app-loading
위의 명령어로 expo-app-loading을 설치하고
import AppLoading from 'expo-app-loading
import를 위처럼 수정하니 해결되었습니다.
Beta Was this translation helpful? Give feedback.
All reactions