Problem with submission

I submitted my game tonight and I'm stuck with the error message:

Apk error: package debuggable flag be false


I'm not sure how to fix it! Can anyone help?

Comments

  • PiersPiers Posts: 680Member
    Saw this from you or someone else via devsupport, forwarded to engineering and will hopefully have this resolved soon.
  • OrikuOriku Posts: 263Member
    Make sure your compiling a release build via ant release, signing it and zip aligning it. 

  • SpoonThumbSpoonThumb Posts: 426Member
    I got this problem and solved it by setting debuggable to false in the Android manifest file of my game:

        <application
            android:debuggable="false"
            android:label="@string/app_name"
            etc... >
  • PiersPiers Posts: 680Member
    gribbly, let me know if you get issue resolved and I can close your support ticket.  Thx.
  • gribblygribbly Posts: 80Member
    Thx for responses, I believe I have fixed it (testing now). Will post details when confirmed!
  • gribblygribbly Posts: 80Member
    edited March 2013
    Yup, this issue is resolved. I should have clarified that I was developing in Unity. The fix for me was:
    • Go to File --> Build Settings (in Unity)
    • "Script Debugging" was checked, but greyed because "Development Build" was unchecked.
    • Temporarily check "Development Build"
    • This ungreys "Script Debugging" so it can be unchecked.
    • Uncheck "Development Build" again
    • Now both "Script Debugging" and "Development Build" are unchecked
    • Build, resubmit, profit!
    Post edited by gribbly on
  • PiersPiers Posts: 680Member
    Awesome!  :)
Sign In or Register to comment.