문의를 남기실 경우 다음 항목을 작성해 주세요.
정보가 부족한 경우 확인 및 답변이 지연될 수 있습니다.
- 뒤끝 SDK 버전 : 5.5.0
- 프로젝트명 : ChickenCS
- 스테이터스 코드 :
- 에러 코드 :
- 에러 메시지 :
안녕하세요. 서버 설정 진행중
아래와 같은 에러로 인해 진행을 못하게 되었습니다.
안드로이드 단말 갤럭시 S10 에서 진행하였으며
똑같은 에러로 커뮤니티에 검색 후
0) Backend.aar 존재확인 및
- IL2CPP & .NET4.x 설정까지도 하였고,
- 뒤끝 SDK 애셋에서 삭제 후 재설치까지 하였으나 별다른 나아짐은 없습니다.
사용한 코드 및 에러로그는 아래와 같습니다.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using BackEnd;
using System;
public class BackEndInitializer : MonoBehaviour
{
void Start() {
// 초기화
// [.net4][il2cpp] 사용 시 필수 사용
Backend.Initialize(() =>
{
// 초기화 성공한 경우 실행
if (Backend.IsInitialized)
{
// example
// 버전체크 -> 업데이트
}
// 초기화 실패한 경우 실행
else
{
}
}, true);
}
void Update() {
Backend.AsyncPoll();
}
}
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. —> UnityEngine.AndroidJavaException: java.lang.ClassNotFoundException: io.thebackend.unity.Utils.OfferDeviceInfo
at UnityEngine.AndroidJNISafe.CheckException () [0x00000] in <00000000000000000000000000000000>:0
at UnityEngine.AndroidJNISafe.FindClass (System.String name) [0x00000] in <00000000000000000000000000000000>:0
at UnityEngine.AndroidJavaClass._AndroidJavaClass (System.String className) [0x00000] in <00000000000000000000000000000000>:0
at BackEnd.NativeInstance.AndroidInstance…ctor () [0x00000] in <00000000000000000000000000000000>:0
at System.Reflection.MonoCMethod.InternalInvoke (System.Object obj, System.Object[] parameters) [0x00000] in <00000000000000000000000000000000>:0
at System.Activator.CreateInstance[T] () [0x00000] in <00000000000000000000000000000000>:0
at System.Func1[TResult].Invoke () [0x00000] in <00000000000000000000000000000000>:0 at System.Lazy
1[T].CreateValue () [0x00000] in <00000000000000000000000000000000>:0
at System.Lazy1[T].LazyInitValue () [0x00000] in <00000000000000000000000000000000>:0 at BackEnd.Backend.#Fsb () [0x00000] in <00000000000000000000000000000000>:0 at BackEnd.Backend.#p () [0x00000] in <00000000000000000000000000000000>:0 at BackEnd.Backend.Initialize (BackEnd.Backend+InitializeCallBack isfinish, System.Boolean useAsyncPoll) [0x00000] in <00000000000000000000000000000000>:0 --- End of inner exception stack trace --- at System.Reflection.MonoCMethod.InternalInvoke (System.Object obj, System.Object[] parameters) [0x00000] in <00000000000000000000000000000000>:0 at System.Activator.CreateInstance[T] () [0x00000] in <00000000000000000000000000000000>:0 at System.Func
1[TResult].Invoke () [0x00000] in <00000000000000000000000000000000>:0
at System.Lazy1[T].CreateValue () [0x00000] in <00000000000000000000000000000000>:0 at System.Lazy
1[T].LazyInitValue () [0x00000] in <00000000000000000000000000000000>:0
at BackEnd.Backend.#Fsb () [0x00000] in <00000000000000000000000000000000>:0
at BackEnd.Backend.#p () [0x00000] in <00000000000000000000000000000000>:0
at BackEnd.Backend.Initialize (BackEnd.Backend+InitializeCallBack isfinish, System.Boolean useAsyncPoll) [0x00000] in <00000000000000000000000000000000>:0
BackEnd.Backend:#Fsb()
BackEnd.Backend:#p()
BackEnd.Backend:Initialize(InitializeCallBack, Boolean)
답변 부탁드립니다 ㅠ