2025-04-09 16:46:14 +08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2024-04-30 23:38:49 +08:00
|
|
|
<!-- 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.
|
|
|
|
|
-->
|
2025-04-09 16:46:14 +08:00
|
|
|
<application
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="FlClash Debug"
|
|
|
|
|
tools:replace="android:label">
|
2024-04-30 23:38:49 +08:00
|
|
|
<service
|
2025-04-09 16:46:14 +08:00
|
|
|
android:name=".services.FlClashTileService"
|
|
|
|
|
android:label="FlClash Debug"
|
|
|
|
|
tools:replace="android:label"
|
|
|
|
|
tools:targetApi="24" />
|
2024-04-30 23:38:49 +08:00
|
|
|
</application>
|
|
|
|
|
</manifest>
|