add an android icon to the starter app

This commit is contained in:
Devon Carew 2016-02-24 23:12:33 -08:00
parent 6af4492773
commit f57afa762f
8 changed files with 1 additions and 4 deletions

View File

@ -78,8 +78,6 @@ class CreateCommand extends Command {
_renderTemplates(projectDir, flutterPackagesDirectory,
renderDriverTest: argResults['with-driver-test']);
printStatus('');
if (argResults['pub']) {
int code = await pubGet(directory: projectDir.path);
if (code != 0)

View File

@ -6,7 +6,7 @@
<uses-sdk android:minSdkVersion="${android.minApiLevel}" android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET"/>
<application android:name="org.domokit.sky.shell.SkyApplication" android:label="{{projectName}}">
<application android:name="org.domokit.sky.shell.SkyApplication" android:label="{{projectName}}" android:icon="@mipmap/ic_launcher">
<activity android:name="org.domokit.sky.shell.SkyActivity"
android:launchMode="singleTask"
android:theme="@android:style/Theme.Black.NoTitleBar"

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -1 +0,0 @@
Place Android resources here (http://developer.android.com/guide/topics/resources/overview.html).