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) {
178
178
// activity/android:name should be the full name (package + class name) of
179
179
// the actual activity class. or the package can be replaced by a single
180
180
// 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\" >" );
182
183
183
184
writer .println (" <intent-filter>" );
184
185
writer .println (" <action android:name=\" android.intent.action.MAIN\" />" );
@@ -303,4 +304,4 @@ protected void save(File file) {
303
304
private File getManifestFile () {
304
305
return new File (sketch .getFolder (), MANIFEST_XML );
305
306
}
306
- }
307
+ }
You can’t perform that action at this time.
0 commit comments