728x90
반응형
* 여러 프로젝트를 동시에 진행하는 과정에서 abb 파일 빌드 시 발생한 에러
FAILURE: Build failed with an exception.
* What went wrong: Task 'bundleRelese' not found in root project '...'. Some candidates are: 'bundleRelease'.
* Try:
> Run gradlew tasks to get a list of available tasks.
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.\
...
# 해결
: 아래 #1 명령어를 수행 후 다시 빌드 하면 해결
#1. location : [project]
$ react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle
#2. location : [project]/android
$ ./gradlew bundleRelease
728x90
반응형