File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/processing/mode/android Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -171,11 +171,11 @@ private void writeBlankManifest(final File file) {
171
171
writer .println (" android:versionName=\" 1.0\" >" + newLine );
172
172
173
173
// Publishing-specific features
174
+ // for now including this... we're wiring to a particular SDK version anyway...
175
+ writer .println (" <uses-sdk android:minSdkVersion=\" " + AndroidBuild .sdkVersion + "\" />" + newLine );
174
176
if (AndroidBuild .publishOption == AndroidBuild .FRAGMENT ) {
175
- // for now including this... we're wiring to a particular SDK version anyway...
176
- writer .println (" <uses-sdk android:minSdkVersion=\" " + AndroidBuild .sdkVersion + "\" />" + newLine );
177
- } else if (AndroidBuild .publishOption == AndroidBuild .WALLPAPER ) {
178
- writer .println (" <uses-sdk android:minSdkVersion=\" " + AndroidBuild .sdkVersion + "\" />" + newLine );
177
+ // nothing special for fragments
178
+ } else if (AndroidBuild .publishOption == AndroidBuild .WALLPAPER ) {
179
179
writer .println (" <uses-feature android:name=\" android.software.live_wallpaper\" />" + newLine );
180
180
} else if (AndroidBuild .publishOption == AndroidBuild .WATCHFACE ) {
181
181
writer .println (" <uses-feature android:name=\" android.hardware.type.watch\" />" + newLine );
You can’t perform that action at this time.
0 commit comments