diff --git a/dev/benchmarks/complex_layout/android/app/build.gradle b/dev/benchmarks/complex_layout/android/app/build.gradle index a923d9f5c6..e6845e0268 100644 --- a/dev/benchmarks/complex_layout/android/app/build.gradle +++ b/dev/benchmarks/complex_layout/android/app/build.gradle @@ -19,6 +19,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { + namespace "com.yourcompany.complexLayout" compileSdkVersion flutter.compileSdkVersion compileOptions { diff --git a/dev/benchmarks/complex_layout/android/app/src/main/AndroidManifest.xml b/dev/benchmarks/complex_layout/android/app/src/main/AndroidManifest.xml index f550d95c2a..5e6aaf8e36 100644 --- a/dev/benchmarks/complex_layout/android/app/src/main/AndroidManifest.xml +++ b/dev/benchmarks/complex_layout/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + diff --git a/dev/benchmarks/macrobenchmarks/android/app/build.gradle b/dev/benchmarks/macrobenchmarks/android/app/build.gradle index e4a741830c..6f2a8a6755 100644 --- a/dev/benchmarks/macrobenchmarks/android/app/build.gradle +++ b/dev/benchmarks/macrobenchmarks/android/app/build.gradle @@ -29,6 +29,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { + namespace "com.example.macrobenchmarks" compileSdkVersion flutter.compileSdkVersion compileOptions { diff --git a/dev/benchmarks/macrobenchmarks/android/app/src/main/AndroidManifest.xml b/dev/benchmarks/macrobenchmarks/android/app/src/main/AndroidManifest.xml index 6453a03905..539e68779a 100644 --- a/dev/benchmarks/macrobenchmarks/android/app/src/main/AndroidManifest.xml +++ b/dev/benchmarks/macrobenchmarks/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + - + diff --git a/dev/benchmarks/multiple_flutters/android/app/build.gradle b/dev/benchmarks/multiple_flutters/android/app/build.gradle index 9c43ffbaa8..8e2b72d7c7 100644 --- a/dev/benchmarks/multiple_flutters/android/app/build.gradle +++ b/dev/benchmarks/multiple_flutters/android/app/build.gradle @@ -13,6 +13,7 @@ android { } } + namespace "dev.flutter.multipleflutters" compileSdkVersion 31 compileOptions { @@ -54,4 +55,4 @@ dependencies { androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' implementation project(':flutter') -} \ No newline at end of file +} diff --git a/dev/benchmarks/multiple_flutters/android/app/src/main/AndroidManifest.xml b/dev/benchmarks/multiple_flutters/android/app/src/main/AndroidManifest.xml index e8e218f112..bee9c26219 100644 --- a/dev/benchmarks/multiple_flutters/android/app/src/main/AndroidManifest.xml +++ b/dev/benchmarks/multiple_flutters/android/app/src/main/AndroidManifest.xml @@ -2,9 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - - + - \ No newline at end of file + diff --git a/dev/benchmarks/platform_views_layout/android/app/build.gradle b/dev/benchmarks/platform_views_layout/android/app/build.gradle index 2190a0fcfb..80af41dc8f 100644 --- a/dev/benchmarks/platform_views_layout/android/app/build.gradle +++ b/dev/benchmarks/platform_views_layout/android/app/build.gradle @@ -19,6 +19,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { + namespace "dev.benchmarks.platform_views_layout" compileSdkVersion flutter.compileSdkVersion compileOptions { diff --git a/dev/benchmarks/platform_views_layout/android/app/src/main/AndroidManifest.xml b/dev/benchmarks/platform_views_layout/android/app/src/main/AndroidManifest.xml index 01338c0ef2..b8842f6853 100644 --- a/dev/benchmarks/platform_views_layout/android/app/src/main/AndroidManifest.xml +++ b/dev/benchmarks/platform_views_layout/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + diff --git a/dev/benchmarks/platform_views_layout_hybrid_composition/android/app/build.gradle b/dev/benchmarks/platform_views_layout_hybrid_composition/android/app/build.gradle index 2190a0fcfb..1fd8842106 100644 --- a/dev/benchmarks/platform_views_layout_hybrid_composition/android/app/build.gradle +++ b/dev/benchmarks/platform_views_layout_hybrid_composition/android/app/build.gradle @@ -19,6 +19,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { + namespace "dev.benchmarks.platform_views_layout_hybrid_composition" compileSdkVersion flutter.compileSdkVersion compileOptions { diff --git a/dev/benchmarks/platform_views_layout_hybrid_composition/android/app/src/main/AndroidManifest.xml b/dev/benchmarks/platform_views_layout_hybrid_composition/android/app/src/main/AndroidManifest.xml index 4104ae8dc9..41ef4aed72 100644 --- a/dev/benchmarks/platform_views_layout_hybrid_composition/android/app/src/main/AndroidManifest.xml +++ b/dev/benchmarks/platform_views_layout_hybrid_composition/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + diff --git a/dev/benchmarks/test_apps/stocks/android/app/build.gradle b/dev/benchmarks/test_apps/stocks/android/app/build.gradle index ea3c1c5135..82e97a1231 100644 --- a/dev/benchmarks/test_apps/stocks/android/app/build.gradle +++ b/dev/benchmarks/test_apps/stocks/android/app/build.gradle @@ -29,6 +29,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { + namespace "io.flutter.examples.stocks" compileSdkVersion flutter.compileSdkVersion compileOptions { diff --git a/dev/benchmarks/test_apps/stocks/android/app/src/main/AndroidManifest.xml b/dev/benchmarks/test_apps/stocks/android/app/src/main/AndroidManifest.xml index e77992978d..d32d6e5048 100644 --- a/dev/benchmarks/test_apps/stocks/android/app/src/main/AndroidManifest.xml +++ b/dev/benchmarks/test_apps/stocks/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + - + - + - + - + diff --git a/dev/integration_tests/deferred_components_test/android/app/src/main/AndroidManifest.xml b/dev/integration_tests/deferred_components_test/android/app/src/main/AndroidManifest.xml index ebc77b6731..7ba934d1e3 100644 --- a/dev/integration_tests/deferred_components_test/android/app/src/main/AndroidManifest.xml +++ b/dev/integration_tests/deferred_components_test/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + + xmlns:dist="http://schemas.android.com/apk/distribution"> - + diff --git a/dev/integration_tests/flutter_gallery/android/app/build.gradle b/dev/integration_tests/flutter_gallery/android/app/build.gradle index da7c676d89..ca9d391103 100644 --- a/dev/integration_tests/flutter_gallery/android/app/build.gradle +++ b/dev/integration_tests/flutter_gallery/android/app/build.gradle @@ -40,6 +40,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { + namespace "io.flutter.demo.gallery" compileSdkVersion flutter.compileSdkVersion compileOptions { diff --git a/dev/integration_tests/flutter_gallery/android/app/src/main/AndroidManifest.xml b/dev/integration_tests/flutter_gallery/android/app/src/main/AndroidManifest.xml index 6a3813aaf4..4fa18532f6 100644 --- a/dev/integration_tests/flutter_gallery/android/app/src/main/AndroidManifest.xml +++ b/dev/integration_tests/flutter_gallery/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + - + - + - + - + - + diff --git a/examples/api/android/app/src/main/AndroidManifest.xml b/examples/api/android/app/src/main/AndroidManifest.xml index 6143bb9f76..bc97e5f51c 100644 --- a/examples/api/android/app/src/main/AndroidManifest.xml +++ b/examples/api/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + - + diff --git a/examples/flutter_view/android/app/build.gradle b/examples/flutter_view/android/app/build.gradle index 0fe260689b..8e637f7d9a 100644 --- a/examples/flutter_view/android/app/build.gradle +++ b/examples/flutter_view/android/app/build.gradle @@ -29,6 +29,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { + namespace "com.example.view" compileSdkVersion flutter.compileSdkVersion compileOptions { diff --git a/examples/flutter_view/android/app/src/main/AndroidManifest.xml b/examples/flutter_view/android/app/src/main/AndroidManifest.xml index 431ed2fc0b..2f6660ec69 100644 --- a/examples/flutter_view/android/app/src/main/AndroidManifest.xml +++ b/examples/flutter_view/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + - + - + diff --git a/examples/layers/android/app/build.gradle b/examples/layers/android/app/build.gradle index ae5db5ac1d..f49cf04767 100644 --- a/examples/layers/android/app/build.gradle +++ b/examples/layers/android/app/build.gradle @@ -29,6 +29,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { + namespace "io.flutter.examples.Layers" compileSdkVersion flutter.compileSdkVersion compileOptions { diff --git a/examples/layers/android/app/src/main/AndroidManifest.xml b/examples/layers/android/app/src/main/AndroidManifest.xml index 28d04ac933..64e638d1f4 100644 --- a/examples/layers/android/app/src/main/AndroidManifest.xml +++ b/examples/layers/android/app/src/main/AndroidManifest.xml @@ -2,8 +2,7 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> - + - + - +