유니티 광고 안뜨는 오류 해결 (Unity admob ads error Perfectly Solved)-Your advertising ID declaration in Play Console says that your app uses advertising ID. A manifest file in one of your active artifacts doesn't include the com.google.android.gms.permission.AD_ID permission.
<유니티 광고 ID 오류> * 영문 오류 Your advertising ID declaration in Play Console says that your app uses advertising ID. A manifest file in one of your active artifacts doesn't include the com.google.android.gms.permission.AD_ID permission. If you don't include this permission in your manifest file, your advertising identifier will be zeroed out. This may break your advertising and analytics use cases, and cause loss of revenue. Learn more You can remove these errors by updating your advertising ID declaration info_outline Apps that target Android 13 (API 33) without the AD_ID permission will have their advertising identifier zeroed out. This may impact advertising and analytics use-cases. Learn more Update declaration Release without permission * 한글 오류 <해결방법> 유니티에서 위와 같이 custom main manifest를 체크하면, 아래 보이는 경로에 AndroidManifest.xml이라는 파일이 생성된다. 그 파일에 아래의 내용을 넣어준다. <uses-permission android:name="com.google.android.gms.permission.AD_ID"/> <해결 완료>...