-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more ContentApp cluster handlers #12634
Merged
Merged
Conversation
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
pullapprove
bot
requested review from
andy31415,
anush-apple,
balducci-apple,
bzbarsky-apple,
carol-apple,
chulspro,
Damian-Nordic,
electrocucaracha,
emargolis,
erjiaqing,
franck-apple,
harimau-qirex,
hawk248,
jelderton,
jepenven-silabs,
jmartinez-silabs,
LuDuda,
mlepage-google,
mrjerryjohns,
msandstedt,
mspang,
pan-apple,
robszewczyk,
sagar-apple,
saurabhst,
selissia and
tcarmelveilleux
December 6, 2021 19:25
lazarkov
approved these changes
Dec 9, 2021
PR #12634: Size comparison from a8b7f4b to c6457e4 Full report (5 builds for mbed)
|
/rebase |
PR #12634: Size comparison from edbbd7f to 43e6484 Full report (18 builds for mbed, nrfconnect, qpg)
|
PR #12634: Size comparison from edbbd7f to 1ca1298 Increases above 0.2%:
Increases (9 builds for esp32, k32w, p6, telink)
Decreases (3 builds for p6)
Full report (9 builds for esp32, k32w, p6, telink)
|
* Restyled by prettier-markdown * Restyled by prettier-yaml Co-authored-by: Restyled.io <commits@restyled.io>
pullapprove
bot
requested review from
Byungjoo-Lee,
chshu,
dhrishi,
gjc13 and
xylophone21
December 12, 2021 19:24
PR #12634: Size comparison from edbbd7f to e76033f Increases above 0.2%:
Increases (17 builds for efr32, esp32, k32w, linux, mbed, p6)
Decreases (6 builds for mbed, p6)
Full report (18 builds for efr32, esp32, k32w, linux, mbed, p6)
|
Merged
examples/tv-app/android/include/application-launcher/ApplicationLauncherManager.cpp
Show resolved
Hide resolved
examples/tv-app/android/include/application-launcher/ApplicationLauncherManager.cpp
Show resolved
Hide resolved
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
Change overview
Testing
// launch tv-app
./out/host/chip-tv-app --secured-device-port 5640 --secured-commissioner-port 5552
// commission it from chip-tool
./out/host/chip-tool pairing onnetwork-long 1234 20202021 3840
// launch app named "App3" which is a dummy app on linux, which puts it at endpoint 6
./out/host/chip-tool applicationlauncher launch-app foo1 1 App3 1234 1
// read the application launcher list
./out/host/chip-tool applicationlauncher read application-launcher-list 1234 6
// read the accepts header for content launcher
./out/host/chip-tool contentlauncher read accepts-header-list 1234 6
// use content launcher to launch a url
./out/host/chip-tool contentlauncher launch-url http://www.yahoo.com foo2 1234 6
// use content launcher to launch content
./out/host/chip-tool contentlauncher launch-content 1 data1 1234 6
// use target navigator to read list of targets
./out/host/chip-tool targetnavigator read target-navigator-list 1234 6
// use target navigator to navigate to target 2
./out/host/chip-tool targetnavigator navigate-target 2 foo1 1234 6