Skip to content

Commit

Permalink
style: Adding extra space to the application opening tag (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCsabaToth authored Jun 19, 2024
1 parent 20a542b commit dc0cd55
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="{{org_name.dotCase()}}.{{project_name.snakeCase()}}">
<application
<application
android:label="${appName}"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="{{org_name.dotCase()}}.{{project_name.snakeCase()}}">
<application
<application
android:label="${appName}"
android:icon="@mipmap/ic_launcher">
<activity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="{{org_name.dotCase()}}.example">
<application
<application
android:label="example"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
android:name="flutterEmbedding"
android:value="2" />

<meta-data
android:name="com.google.android.wearable.standalone"
android:value="true" />
<meta-data
android:name="com.google.android.wearable.standalone"
android:value="true" />
</application>
</manifest>

0 comments on commit dc0cd55

Please sign in to comment.