summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDomingos Lopes <domingos86lopes@gmail.com>2016-03-19 00:31:41 -0400
committerDomingos Lopes <domingos86lopes+github@gmail.com>2016-04-23 21:39:51 -0400
commit1b6459c8ee2dfcb40a4909aa87ff2ea100b8221e (patch)
tree6d5a476ab9679919746d1312d144fedfe69a9b6e
parentc836bc458df4e1adfb6501f444d90578b33b8743 (diff)
downloadAntennaPod-1b6459c8ee2dfcb40a4909aa87ff2ea100b8221e.zip
Include chromecast dependencies
-rw-r--r--app/src/main/AndroidManifest.xml4
-rw-r--r--build.gradle3
-rw-r--r--core/build.gradle5
3 files changed, 12 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 005ba604f..55b70ed90 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -41,6 +41,10 @@
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAI3a05VToCTlqBymJrbFGaKQMvF-bBAuLsOdavBA"/>
+ <meta-data
+ android:name="com.google.android.gms.version"
+ android:value="@integer/google_play_services_version" />
+
<activity
android:name=".activity.MainActivity"
android:configChanges="keyboardHidden|orientation"
diff --git a/build.gradle b/build.gradle
index f692e201a..354ffc65c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -61,6 +61,9 @@ project.ext {
triangleLabelViewVersion = "1.1.0"
audioPlayerVersion = "v1.0.16"
+
+ castCompanionLibVer = "2.8.2"
+ //playServicesVersion = "8.4.0"
}
task wrapper(type: Wrapper) {
diff --git a/core/build.gradle b/core/build.gradle
index f79ea8fc8..378747786 100644
--- a/core/build.gradle
+++ b/core/build.gradle
@@ -57,4 +57,9 @@ dependencies {
compile "io.reactivex:rxandroid:$rxAndroidVersion"
compile "com.github.AntennaPod:AntennaPod-AudioPlayer:$audioPlayerVersion"
+
+ // Add casting features
+ compile "com.google.android.libraries.cast.companionlibrary:ccl:$castCompanionLibVer"
+ //compile "com.android.support:mediarouter-v7:$supportVersion"
+ //compile "com.google.android.gms:play-services:$playServicesVersion"
}