{
"build": {
"preview": {
"android": {
"buildType": "apk"
}
},
"preview2": {
"android": {
"gradleCommand": ":app:assembleRelease"
}
},
"preview3": {
"developmentClient": true
},
"preview4": {
"distribution": "internal"
},
"production": {}
}
}
eas build -p android --profile preview
npx expo install expo-build-properties
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
]
]
React Native Expo를 이용하여 어플을 개발하고 APK 파일로 만들기 위한 빌드를 진행해 보았습니다.
제일 처음 진행한 방법은 다음 링크를 참고하여 진행하여 보았습니다.
https://docs.expo.dev/develop/development-builds/create-a-build/
위 링크를 참고하여 eas.json을 수정하고 빌드하였습니다.
eas.json
{
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {}
}
}
eas build --profile development --platform android
expo.dev 페이지의 Builds 탭에서 빌드 상세 내역을 확인할 수 있었습니다.
그러나 첫 번째 시도 결과물은 development build 였습니다. 빌드 결과물을 어플에 설치하여 보니 다음과 같은 결과물이 나왔습니다.
그래서 빌드를 했던 명령어에서 "development" 문구를 제거해보았습니다.
eas build --platform android
{
"build": {
"preview": {
"android": {
"buildType": "apk"
}
},
"preview2": {
"android": {
"gradleCommand": ":app:assembleRelease"
}
},
"preview3": {
"developmentClient": true
},
"preview4": {
"distribution": "internal"
},
"production": {}
}
}
그런데 문제점이 생겼습니다. 어플에 붙여둔 API가 동작을 하지 않았습니다.(http://로 시작하는 서버)
API 수신은 제대로 하고 있는지 확인하기 위해 안드로이드 시뮬레이터에 APK를 설치하고 log를 찍어보았습니다.
'TypeError: Network request failed
at anonymous (address at index.android.bundle:1:127429)
at apply (native)
at anonymous (address at index.android.bundle:1:91744)
at _callTimer (address at index.android.bundle:1:91076)
at callTimers (address at index.android.bundle:1:92806)
at apply (native)
at callFunction (address at index.android.bundle:1:58011)
at anonymous (address at index.android.bundle:1:56507)
at guard (address at index.android.bundle:1:57445)
at callFunctionReturnFlushedQueue (address at index.android.bundle:1:56465)'
npx expo install expo-build-properties
"plugins": [
[
"expo-build-properties",
{
"android": {
"useCleartextTraffic": true
}
}
]
]
http만 안 되는건가요? 아니면 https도 안 되는건가요?ㅠㅠ