Enterprise
Latest Update | Stable Release | Release Candidate | Beta Release | Alpha Release |
---|---|---|---|---|
January 13, 2021 | 1.1.0 | - | - | - |
Declaring dependencies
To add a dependency on Enterprise Feedback, you must add the Google Maven repository to your project. Read Google's Maven repository for more information.
Add the dependencies for the artifacts you need in the build.gradle
file for
your app or module:
Groovy
dependencies { def enterprise_version = "1.1.0" implementation "androidx.enterprise:enterprise-feedback:$enterprise_version" // For testing enterprise feedback in isolation implementation "androidx.enterprise:enterprise-feedback-testing:$enterprise_version" }
Kotlin
dependencies { val enterprise_version = "1.1.0" implementation("androidx.enterprise:enterprise-feedback:$enterprise_version") // For testing enterprise feedback in isolation implementation("androidx.enterprise:enterprise-feedback-testing:$enterprise_version") }
For more information about dependencies, see Add Build Dependencies.
Feedback
Your feedback helps make Jetpack better. Let us know if you discover new issues or have ideas for improving this library. Please take a look at the existing issues in this library before you create a new one. You can add your vote to an existing issue by clicking the star button.
See the Issue Tracker documentation for more information.
Version 1.1.0
Version 1.1.0
January 13, 2021
androidx.enterprise:enterprise-feedback:1.1.0
and androidx.enterprise:enterprise-feedback-testing:1.1.0
are released. Version 1.1.0 contains these commits.
Major changes since 1.0.0
New Features
- New methods added which allow for callbacks to indicate success or error.
API Changes
- Deprecated set and setState methods which do not give feedback on error.
- Added callback to be triggered when setting states.
Version 1.1.0-rc01
December 2, 2020
androidx.enterprise:enterprise-feedback:1.1.0-rc01
and androidx.enterprise:enterprise-feedback-testing:1.1.0-rc01
are released with no changes since 1.1.0-beta01
. Version 1.1.0-rc01 contains these commits.
Version 1.1.0-beta01
October 14, 2020
androidx.enterprise:enterprise-feedback:1.1.0-beta01
and androidx.enterprise:enterprise-feedback-testing:1.1.0-beta01
are released. Version 1.1.0-beta01 contains these commits.
No changes since 1.1.0-alpha02
Version 1.1.0-alpha02
September 2, 2020
androidx.enterprise:enterprise-feedback:1.1.0-alpha02
and androidx.enterprise:enterprise-feedback-testing:1.1.0-alpha02
are released. Version 1.1.0-alpha02 contains these commits.
New Features
- New methods added which allow for callbacks to indicate success or error.
API Changes
- Deprecate set and setState methods which do not give feedback on error.
- Add callback to be triggered when setting states. (Ic181e)
Version 1.1.0-alpha01
August 5, 2020
androidx.enterprise:enterprise-feedback:1.1.0-alpha01
and androidx.enterprise:enterprise-feedback-testing:1.1.0-alpha01
are released. Version 1.1.0-alpha01 contains these commits.
API Changes
- Replaced constants for max field sizes with getters. (I2e351, b/140519786)
Bug Fixes
- Now compatible with apps targeting API 30
Version 1.0.0
Version 1.0.0
December 18, 2019
androidx.enterprise:enterprise-feedback:1.0.0
and androidx.enterprise:enterprise-feedback-testing:1.0.0
are released. Version 1.0.0 contains these commits.
Major features in 1.0.0
KeyedAppStatesReporter
allows apps to report state changes to EMMs (Enterprise Mobility Management)KeyedAppStatesService
allows Device Policy Managers to receive reported state changes
Version 1.0.0-rc01
October 9, 2019
androidx.enterprise:enterprise-feedback:1.0.0-rc01
and androidx.enterprise:enterprise-feedback:1.0.0-rc01
are released with no changes since 1.1.0-beta01
. Version 1.0.0-rc01 contains these commits.
Version 1.0.0-beta01
September 18, 2019
androidx.enterprise:enterprise-feedback:1.0.0-beta01
and androidx.enterprise:enterprise-feedback-testing:1.0.0-beta01
are released with no changes since 1.0.0-alpha03
. Version 1.0.0-beta01 contains these commits.
Version 1.0.0-alpha03
August 7, 2019
androidx.enterprise:enterprise-feedback:1.0.0-alpha03
and androidx.enterprise:enterprise-feedback-testing:1.0.0-alpha03
are released. The commits included in this version can be found here.
API changes
KeyedAppStatesReporter
is no longer a singleton. UseKeyedAppStatesReporter#create
to create an instance.
Version 1.0.0-alpha02
June 5, 2019
androidx.enterprise:enterprise-feedback:1.0.0-alpha02
and androidx.enterprise:enterprise-feedback-testing:1.0.0-alpha02
are released. This is the first release of androidx.enterprise:enterprise-feedback-testing
. The commits included in this version can be found here.
New features
- New
FakeKeyedAppStatesReporter
to be used in tests.
API changes
- Move
getInstance
andinitialize
fromKeyedAppStatesReporter
to new classSingletonKeyedAppStatesReporter
. - Rename
set
andsetImmediate
tosetStates
andsetStatesImmediate
. - Valid severity is enforced in
KeyedAppState#build
. - Add ‘get’ prefix to getters on
KeyedAppState
andReceivedKeyedAppState
.
Version 1.0.0-alpha01
March 21, 2019
This the first release of androidx.enterprise:enterprise-feedback
.
androidx.enterprise:enterprise-feedback:1.0.0-alpha01
introduces
KeyedAppStatesReporter
and KeyedAppStatesService
, which allow apps to report
state changes to EMMs (Enterprise Mobility Management).
The commits included in this initial release can be found here.
Features
KeyedAppStatesReporter
can be used by apps to report state changes.KeyedAppStatesService
can be used by DPCs to receive and handle state changes.