Added comment for INTERNET permission in Android manifest (#6835)

* Added comment for INTERNET permission in Android manifest

* Added more details to the permission comment.
This commit is contained in:
Joel Trottier-Hebert 2016-11-17 18:04:57 -05:00 committed by Adam Barth
parent 9cb914df17
commit 6d8141b242

View File

@ -4,6 +4,10 @@
android:versionName="0.0.1">
<uses-sdk android:minSdkVersion="{{androidMinApiLevel}}" android:targetSdkVersion="21" />
<!-- The INTERNET permission is required for development. Specifically, flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
<application android:name="org.domokit.sky.shell.SkyApplication" android:label="{{projectName}}" android:icon="@mipmap/ic_launcher">