Status Update
Comments
ys...@google.com <ys...@google.com> #2
Hello,
I'm only a little familiar with Power Apps. Is your app a mobile app or a web app?
This link
The primary
If your app does not work on Android mobile devices, you can also consider the
sm...@google.com <sm...@google.com> #4
All of our @IntDefs were previously @hide to satisfy
Neither the ExerciseEndReason
annotation nor the constants defined within it are currently part of our api/current.txt
, so it's likely we can move their definition outside of the annotation and expose them publicly while retaining the @RestrictTo on the annotation itself.
Description
SDK Version used: 1.0.0-beta03
Warnings for `ExerciseTrackedStatus.OWNED_EXERCISE_IN_PROGRESS`
See
Restricted here
```
@RestrictTo(RestrictTo.Scope.LIBRARY)
public annotation class ExerciseTrackedStatus {
```
But a public val here
```
public class ExerciseInfo(
/** Returns the [ExerciseTrackedStatus]. */
@ExerciseTrackedStatus public val exerciseTrackedStatus: Int,
```