[packages] fix another gradle 8 warnings (#22609)# Why there are other gradle 8 build warnings: ``` > Task :expo:processReleaseManifest package="expo.core" found in source AndroidManifest.x
[packages] fix another gradle 8 warnings (#22609)# Why there are other gradle 8 build warnings: ``` > Task :expo:processReleaseManifest package="expo.core" found in source AndroidManifest.xml: /home/runner/work/expo/expo/packages/expo/android/src/main/AndroidManifest.xml. Setting the namespace via a source AndroidManifest.xml's package attribute is deprecated. Please instead set the namespace (or testNamespace) in the module's build.gradle file, as described here: https://developer.android.com/studio/build/configure-app-module#set-namespace This migration can be done automatically using the AGP Upgrade Assistant, please refer to https://developer.android.com/studio/build/agp-upgrade-assistant for more information. ``` # How migrate `package` in **AndroidManifest.xml** to `namespace` in **build.gradle** # Test Plan ci passed
show more ...
[core][Android] Remove user-facing deprecated functions (#21378)# Why Removes user-facing functions which were deprecated. # How - Removed `ViewManager` component - Removed the ability t
[core][Android] Remove user-facing deprecated functions (#21378)# Why Removes user-facing functions which were deprecated. # How - Removed `ViewManager` component - Removed the ability to call `registerForActivityResult` directly on the `AppContex` class - Removed `coroutineScope` from the module class # Test Plan - unit tests ✅ - build bare-expo ✅
[maps] Migrate code from the SWM repo (#19673)# Why Closes ENG-6626. Migrates code from https://github.com/software-mansion-labs/expo-maps. # How - Copied library code into `packages/expo
[maps] Migrate code from the SWM repo (#19673)# Why Closes ENG-6626. Migrates code from https://github.com/software-mansion-labs/expo-maps. # How - Copied library code into `packages/expo-maps`. - Copied example code into `NCL`. - Fixed problems discovered by the linter. - Excluded google maps utils on iOS, because it didn't compile in our repo. I will investigate that in more detail later. > Note: To test google maps you have to add an API key to the manifest or infoplist. # Test Plan - bare-expo and NCL ✅