Unverified Commit e52833ae authored by jarlisson2's avatar jarlisson2 Committed by GitHub

Fix typo in the Picture-In-Picture element (#2243)

It was not possible to implement or support Picture-In-Picture in my activity due to the lack of an "s" in the supportsPictureInPicture element. Change corrected in this request.
parent 52cddaf3
...@@ -609,9 +609,9 @@ public @interface ActivityElement { ...@@ -609,9 +609,9 @@ public @interface ActivityElement {
* *
* This attribute was added in API level 24. * This attribute was added in API level 24.
* *
* @return the activity supportPictureInPicture attribute * @return the activity supportsPictureInPicture attribute
*/ */
String supportPictureInPicture() default ""; String supportsPictureInPicture() default "";
/** /**
* The task that the activity has an affinity for. Activities with the same * The task that the activity has an affinity for. Activities with the same
...@@ -706,4 +706,4 @@ public @interface ActivityElement { ...@@ -706,4 +706,4 @@ public @interface ActivityElement {
*/ */
String windowSoftInputMode() default ""; String windowSoftInputMode() default "";
} }
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment