14 lines
645 B
XML
14 lines
645 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
|
|
<!-- The INTERNET permission is required for development. Specifically,
|
|
the Flutter tool needs it to communicate with the running application
|
|
to allow setting breakpoints, to provide hot reload, etc.
|
|
-->
|
|
<application android:label="FlClash Debug" tools:replace="android:label">
|
|
<service
|
|
android:name=".services.FlClashTileService"
|
|
android:label="FlClash Debug"
|
|
tools:replace="android:label">
|
|
</service>
|
|
</application>
|
|
</manifest>
|