Commit 5a16c9d1 authored by Jeffrey I. Schiller's avatar Jeffrey I. Schiller

Make Packaged Apps, Including the Repl Apps, not have Java level

debugging turned on.

Change-Id: I987268cc35b1cce65088fef0e798401cf2bb63ca
parent 26810fc8
...@@ -247,7 +247,7 @@ public final class Compiler { ...@@ -247,7 +247,7 @@ public final class Compiler {
// http://developer.android.com/guide/publishing/preparing.html suggests removing the // http://developer.android.com/guide/publishing/preparing.html suggests removing the
// 'debuggable=true' but I'm not sure that our users would want that while they're still // 'debuggable=true' but I'm not sure that our users would want that while they're still
// testing their packaged apps. Maybe we should make that an option, somehow. // testing their packaged apps. Maybe we should make that an option, somehow.
out.write("android:debuggable=\"true\" "); out.write("android:debuggable=\"false\" ");
out.write("android:label=\"" + projectName + "\" "); out.write("android:label=\"" + projectName + "\" ");
out.write("android:icon=\"@drawable/ya\" "); out.write("android:icon=\"@drawable/ya\" ");
out.write(">\n"); out.write(">\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment