-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the removed attributes as deprecated
- Loading branch information
Showing
8 changed files
with
49 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,6 @@ body: | |
- area:heroku | ||
- area:host | ||
- area:http | ||
- area:ios | ||
- area:k8s | ||
- area:messaging | ||
- area:network | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,6 @@ body: | |
- area:heroku | ||
- area:host | ||
- area:http | ||
- area:ios | ||
- area:k8s | ||
- area:messaging | ||
- area:network | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,6 @@ body: | |
- area:heroku | ||
- area:host | ||
- area:http | ||
- area:ios | ||
- area:k8s | ||
- area:messaging | ||
- area:network | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
groups: | ||
- id: registry.android.deprecated | ||
prefix: android | ||
type: attribute_group | ||
brief: > | ||
This document defines attributes that represents an occurrence of a lifecycle transition on the Android platform. | ||
attributes: | ||
- id: state | ||
stability: experimental | ||
brief: > | ||
Deprecated use the `device.app.lifecycle` event definition including | ||
`android.state` as a payload field instead. | ||
note: > | ||
The Android lifecycle states are defined in [Activity lifecycle callbacks](https://developer.android.com/guide/components/activities/activity-lifecycle#lc), | ||
and from which the `OS identifiers` are derived. | ||
type: | ||
allow_custom_values: true | ||
members: | ||
- id: created | ||
value: 'created' | ||
brief: > | ||
Any time before Activity.onResume() or, if the app has no Activity, Context.startService() | ||
has been called in the app for the first time. | ||
stability: experimental | ||
- id: background | ||
value: 'background' | ||
brief: > | ||
Any time after Activity.onPause() or, if the app has no Activity, | ||
Context.stopService() has been called when the app was in the foreground state. | ||
stability: experimental | ||
- id: foreground | ||
value: 'foreground' | ||
brief: > | ||
Any time after Activity.onResume() or, if the app has no Activity, | ||
Context.startService() has been called when the app was in either the created or background states. | ||
stability: experimental |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters