| #
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 ...
|
| #
fe2c939b |
| 08-Aug-2019 |
Tongyu Zhu <[email protected]> |
[expo-cellular] Create expo-cellular unimodule (#5098)
* create new unimodule
* [docs] set up readme
* set up config
update package.json and unimodule.json, we should update expo-tools to a
[expo-cellular] Create expo-cellular unimodule (#5098)
* create new unimodule
* [docs] set up readme
* set up config
update package.json and unimodule.json, we should update expo-tools to auto-generate this stuff
* [js/ts] set up js
* [ios] set up pods
ran pod install
* [ios] set up unimodule
* [enum] change null to unknown for cellulargeneration enum
* [ios] implement constants
* [android] add cellularGeneration implementation
* [android] update constant implementation
* [docs] update js undefined impl and docs description
* [ts/js] update enum
* [ios] implement getCellularGenerationAsync
[ios] Add support for iOS 12+ for CTTelelphonyNetworkInfo
* (-)currentRadioAccessTechnology will be deprecated in iOS 13 in favor of (-)serviceCurrentRadioAccessTechnology
* [ts/js] get rid of double ternary
gave us some bugs in which `false` -> null for Cellular.allowsVoip
* [android] fix when SIM_STATE_READY is false
* Update cellular.md
add info about null values
* [ios] account for nullable cases
* [web] implement getCellularGenerationAsync on web
* fix docs and code format
* [web] add check to avoid null crash
* [docs] add browser compatibility link
* [ios] regenerate pods
ran pod install
* update code format
* [ios] delete commented code
* [ios] update pods
* update pods
* [docs] update carrier info
* delete unrelated files
* add new line at EOF to package.json
* [android] upgrade compileSdkVersion
* [ios] reinstall pods
show more ...
|