Discussions
Activity
Home
›
General Discussion
Sign In
·
Register
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In with OUYA
Register
Sign In with OUYA
Sign In
Register
Categories
Recent Discussions
Activity
Participated
Unanswered
41
Categories
3.8K
All Categories
54
Announcements
646
Games
92
Bug Reporting - Games
887
General Discussion
1.3K
General Development
29
Adobe Air on OUYA
1
Adventure Game Studio on OUYA
82
Clickteam Fusion on OUYA
0
Cocos2D on OUYA
10
Construct2 on OUYA
9
Corona on OUYA
6
Custom Engine on OUYA
25
GameMaker on OUYA
2
Goo on OUYA
9
HTML5 on OUYA
2
ImpactJS on OUYA
6
Marmalade on OUYA
19
MonoGame on OUYA
9
Unreal on OUYA
1
ShiVa on OUYA
693
Unity on OUYA
1
Wave on OUYA
0
ZGameEditor on OUYA
107
Native Development
442
ODK (OUYA Developer Kit)
340
OUYA Hardware
Problem with submission
gribbly
Posts:
80
Member
March 2013
in
General Discussion
I submitted my game tonight and I'm stuck with the error message:
Apk error: package debuggable flag be false
(this is at the
https://devs.ouya.tv/developers/games
link)
I'm not sure how to fix it! Can anyone help?
flyingcargame.com
@flyingcargame
Comments
Piers
Posts:
680
Member
March 2013
Saw this from you or someone else via devsupport, forwarded to engineering and will hopefully have this resolved soon.
Oriku
Posts:
263
Member
March 2013
Make sure your compiling a release build via ant release, signing it and zip aligning it.
http://developer.android.com/tools/building/building-cmdline.html#DebugMode
SpoonThumb
Posts:
426
Member
March 2013
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... >
Twitter
Website
Piers
Posts:
680
Member
March 2013
gribbly, let me know if you get issue resolved and I can close your support ticket. Thx.
gribbly
Posts:
80
Member
March 2013
Thx for responses, I believe I have fixed it (testing now). Will post details when confirmed!
flyingcargame.com
@flyingcargame
gribbly
Posts:
80
Member
March 2013
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
March 2013
flyingcargame.com
@flyingcargame
Piers
Posts:
680
Member
March 2013
Awesome!
:)
Sign In
or
Register
to comment.
Comments
<application
android:debuggable="false"
android:label="@string/app_name"
etc... >
Website