- Android
-
Breaking Change: Split the Glean Kotlin SDK into two packages:
glean
andglean-native
(#1595).
Consumers will need to switch toorg.mozilla.telemetry:glean-native-forUnitTests
.
Old code inbuild.gradle
:testImplementation "org.mozilla.telemetry:glean-forUnitTests:${project.ext.glean_version}"
New code in
build.gradle
:testImplementation "org.mozilla.telemetry:glean-native-forUnitTests:${project.ext.glean_version}"
-
The
glean-gradle-plugin
now automatically excludes theglean-native
dependency ifgeckoview-omni
is also part of the build.
Glean native functionality will be provided by thegeckoview-omni
package.
-
- Rust
- The
glean-ffi
is no longer compiled as acdylib
. Other language SDKs consumeglean-bundle
instead as acdylib
.
This doesn't affect consumers.
- The