친절한 설명 감사드립니다 :)
하나 더 여쭤보자면 패키지 이름은 동일하게 해서 콘솔에 등록을 해놓은 상태인데,
빌드 시 초기화 함수도 실행 되지 않는 것을 발견하게 되었습니다.
초기화 함수 첨부합니다 해결 방법이 있다면 알려주시면 감사하겠습니다.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using BackEnd;
public class BackEndInit : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
var bro = Backend.Initialize(true);
if (bro.IsSuccess())
{
//초기화 성공 시 로직
Debug.Log(“초기화 성공!”);
//CustomSignUp();
}
else
{
// 초기화 실패 시 로직
Debug.LogError(“초기화 실패!”);
}
}
// Update is called once per frame
void Update()
{
}
}