mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
fix a regression in the android manifest
This commit is contained in:
parent
6af4492773
commit
5ee1cba149
@ -8,6 +8,7 @@ import 'dart:io';
|
||||
import 'package:args/command_runner.dart';
|
||||
import 'package:path/path.dart' as path;
|
||||
|
||||
import '../android/android.dart' as android;
|
||||
import '../artifacts.dart';
|
||||
import '../dart/pub.dart';
|
||||
import '../globals.dart';
|
||||
@ -132,6 +133,7 @@ All done! In order to run your application, type:
|
||||
'projectIdentifier': projectIdentifier,
|
||||
'description': description,
|
||||
'flutterPackagesDirectory': relativeFlutterPackagesDirectory,
|
||||
'androidMinApiLevel': android.minApiLevel
|
||||
};
|
||||
|
||||
if (renderDriverTest)
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
android:versionCode="1"
|
||||
android:versionName="0.0.1">
|
||||
|
||||
<uses-sdk android:minSdkVersion="${android.minApiLevel}" android:targetSdkVersion="21" />
|
||||
<uses-sdk android:minSdkVersion="{{androidMinApiLevel}}" android:targetSdkVersion="21" />
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
|
||||
<application android:name="org.domokit.sky.shell.SkyApplication" android:label="{{projectName}}">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user