I managed to successfully create signed APK and OBB file for android using unreal engine 4.12.
but when i am uploading i am receiving ERROR that says
Upload failed
Your APK cannot be analyzed using aapt. Error output:
Failed to run aapt dump badging:
ERROR getting 'android:name' attribute:
it came in upload APK dialog.
let me know what can i do to resolve this issue.
This means there is a bad value assigned to and android:name attribute somewhere in the AndroidManifest.xml. Maybe a custom permission? If you look in the project’s Intermediate/Android/APK directory you will find this file.
I included the permission
“android.permission.INTERNET”
in android project settings from unreal engine
android.permission.INTERNET is always included; you shouldn’t include it again. Look at the AndroidManifest.xml to see exactly what was generated.
Thank you that solved my problem