Problem ArgumentException: JSON parse error: Invalid value. Bundle사이즈를 체크하는 과정에서 위 에러가 발생. (이 경우는 BOM관련 문제는 아님.) public IEnumerator CheckBundle() { AsyncOperationHandle downloadSize = Addressables.GetDownloadSizeAsync(assetLabel.labelString); yield return downloadSize; if (downloadSize.Result > 0) { DownloadBundle(); } else { LoadLoginScene(); } } Solution TextDataProvider.cs private void Reques..