File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/processing/mode/android Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,8 @@ private void writeBlankManifest(final File file) {
178178 // activity/android:name should be the full name (package + class name) of
179179 // the actual activity class. or the package can be replaced by a single
180180 // dot as a prefix as an easier shorthand.
181- writer .println (" <activity android:name=\" \" >" );
181+ writer .println (" <activity android:name=\" \" " );
182+ writer .println (" android:theme=\" @android:style/Theme.NoTitleBar\" >" );
182183
183184 writer .println (" <intent-filter>" );
184185 writer .println (" <action android:name=\" android.intent.action.MAIN\" />" );
@@ -303,4 +304,4 @@ protected void save(File file) {
303304 private File getManifestFile () {
304305 return new File (sketch .getFolder (), MANIFEST_XML );
305306 }
306- }
307+ }
You can’t perform that action at this time.
0 commit comments