Skip to content

Commit 6ec7bab

Browse files
authored
chore: remove legacy package tag in AndroidManifest.xml (#161)
1 parent c3034df commit 6ec7bab

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

very_good_wear_app/__brick__/{{project_name.snakeCase()}}/android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="{{org_name.dotCase()}}.{{project_name.snakeCase()}}">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- The INTERNET permission is required for development. Specifically,
43
the Flutter tool needs it to communicate with the running application
54
to allow setting breakpoints, to provide hot reload, etc.

very_good_wear_app/__brick__/{{project_name.snakeCase()}}/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="{{org_name.dotCase()}}.{{project_name.snakeCase()}}">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<uses-feature android:name="android.hardware.type.watch" />
43
<uses-permission android:name="android.permission.WAKE_LOCK" />
54
<application

very_good_wear_app/__brick__/{{project_name.snakeCase()}}/android/app/src/main/kotlin/{{org_name.pathCase()}}/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package {{org_name.dotCase()}}.{{project_name.snakeCase()}}
1+
package {{application_id}}
22

33
import android.os.Bundle
44
import androidx.annotation.NonNull

very_good_wear_app/__brick__/{{project_name.snakeCase()}}/android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="{{org_name.dotCase()}}.{{project_name.snakeCase()}}">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- The INTERNET permission is required for development. Specifically,
43
the Flutter tool needs it to communicate with the running application
54
to allow setting breakpoints, to provide hot reload, etc.

0 commit comments

Comments
 (0)