Skip to content

Commit ac3cb24

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 09446e7 + f6a2f47 commit ac3cb24

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ChromeCast API v2 for Android
1+
ChromeCast API v2 for Android [![](https://jitpack.io/v/thirdegg/chromecast-android-api-v2.svg)](https://jitpack.io/#thirdegg/chromecast-android-api-v2)
22
======================
33

44
This project is forked from [ChromeCast Java API v2](https://github.com/vitalidze/chromecast-java-api-v2)
@@ -14,15 +14,13 @@ Library is available in JitPack. Put lines below into you project's `build.gradl
1414

1515
```groovy
1616
repositories {
17-
// ...
17+
// ...
1818
maven { url 'https://jitpack.io' }
19-
// ...
2019
}
2120
2221
dependencies {
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);
7775
Status status = chromecast.getStatus();
7876
// Run application if it's not already running
7977
if (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

209207
Projects using library
210208
----------------------

0 commit comments

Comments
 (0)