File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,13 @@ Library is available in JitPack. Put lines below into you project's `build.gradl
1414
1515``` groovy
1616repositories {
17- // ...
17+ // ...
1818 maven { url 'https://jitpack.io' }
19- // ...
2019}
2120
2221dependencies {
23- // ...
24- implementation 'com.github.thirdegg:chromecast-android-api-v2:master-SNAPSHOT'
25- // ...
22+ // ...
23+ implementation 'com.github.thirdegg:chromecast-android-api-v2:v0.11.3'
2624}
2725```
2826
@@ -77,7 +75,7 @@ ChromeCast chromecast = ChromeCasts.get().get(0);
7775Status status = chromecast. getStatus();
7876// Run application if it's not already running
7977if (chromecast. isAppAvailable(" APP_ID" ) && ! status. isAppRunning(" APP_ID" )) {
80- Application app = chromecast. launchApp(" APP_ID" );
78+ Application app = chromecast. launchApp(" APP_ID" );
8179}
8280```
8381
@@ -203,8 +201,8 @@ Useful links
203201* [ Library for Python 2 and 3 to communicate with the Google Chromecast] ( https://github.com/balloob/pychromecast )
204202* [ CastV2 API protocol POC implementation in Python] ( https://github.com/minektur/chromecast-python-poc )
205203* [ Most recent .proto file for CastV2 protocol] ( https://github.com/chromium/chromium/blob/master/components/cast_channel/proto/cast_channel.proto )
206- * [ Implementation of V1 Google ChromeCast protocol] ( https://github.com/entertailion/Caster ) ,
207- * [ Implementation of V2 in Node.js] ( https://github.com/vincentbernat/nodecastor ) .
204+ * [ Implementation of V1 Google ChromeCast protocol] ( https://github.com/entertailion/Caster )
205+ * [ Implementation of V2 in Node.js] ( https://github.com/vincentbernat/nodecastor )
208206
209207Projects using library
210208----------------------
You can’t perform that action at this time.
0 commit comments