Commit eedf8237 authored by Jeffrey I. Schiller's avatar Jeffrey I. Schiller Committed by Gerrit Review System

Update comment in Compiler.java regarding turning off debuggable.

Change-Id: I281b7ef66e77a7812affa97de8010d61cee5c3af
parent aae9d54f
...@@ -269,6 +269,8 @@ public final class Compiler { ...@@ -269,6 +269,8 @@ 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.
// TODONE(jis): Turned off debuggable. No one really uses it and it represents a security
// risk for App Inventor App end-users.
out.write("android:debuggable=\"false\" "); 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\" ");
......
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