| #
3a04781f |
| 24-May-2023 |
Kudo Chien <[email protected]> |
[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 ...
|
| #
1316bc91 |
| 29-Apr-2019 |
Angelika Serwa <[email protected]> |
[expo-video-thumbnails] Add expo-video-thumbnails
# Why
This module generates images from videos. This can be useful when creating for example a video gallery.
# How
I created a new unimodu
[expo-video-thumbnails] Add expo-video-thumbnails
# Why
This module generates images from videos. This can be useful when creating for example a video gallery.
# How
I created a new unimodule `expo-video-thumbnails` from the template.
# Test Plan
Here is an example RN project that I was using to test this library: https://github.com/graszka22/videothumbnails
show more ...
|