// List 단위로 넣게 변경됨.
List<string> testDeviceIds = new List<string>();
void Awake(){
MobileAds.Initialize(initStatus => { });
}
void Start(){
// add code
testDeviceIds.Add(AdRequest.TestDeviceSimulator);
RequestConfiguration config = new RequestConfiguration.Builder().SetTestDeviceIds(testDeviceIds).build();
}
그런다음 빌드 한다 mono
Apk를 안드로이드 스튜디오로 오픈한다.
Run -> logcat
필터 [ Ads.] 입력하면 SetTestDeviceIds 가 보이며 string 값을 복사하여
리스트에 추가해주면 끝
Reference :
stackoverflow.com/questions/4524752/how-can-i-get-device-id-for-admob
step0 - github + sourceTree SSH personal Token 사용방법 (0) | 2022.02.12 |
---|---|
step0 -유니티 21.1.25f 설치 방법 (0) | 2022.02.09 |
Unity Andorid 12 대응 (0) | 2022.01.24 |
Firebase Analytics Debug view Enable code (0) | 2022.01.18 |
Unity 인텐트 필터를 포함하되 'android:exported' 속성을 설정하지 않고 활동, 활동 별칭, 서비스 또는 broadcast receiver가 있는 apk 또는 android app bundle을 업로드했습니다. (4) | 2022.01.14 |
[Unity Solution]AndroidManifest.xml:38: AAPT: error: unexpected element <queries> found in <manifest>. (0) | 2022.01.14 |