aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authornchalko <nchalko@google.com>2019-06-06 12:33:22 -0700
committerNick Chalko <nchalko@google.com>2019-06-11 16:03:29 -0700
commit5b91567436c4ed12685fbd8f4823a45db74020ab (patch)
treee766865f6aa1b0fda07eeff3dc7a8af9c3be06ce /libs
parentfd97b0a4c7723144af567a88941267760d44ab92 (diff)
downloadTV-5b91567436c4ed12685fbd8f4823a45db74020ab.tar.gz
Have AutoFactory implement TunerSessionFactory
PiperOrigin-RevId: 251904008 Change-Id: I58d7f66df3f4b84c3c43ad9b4d297b8997ae6367
Diffstat (limited to 'libs')
-rw-r--r--libs/pom.xml70
-rwxr-xr-xlibs/updateDeps.sh28
2 files changed, 0 insertions, 98 deletions
diff --git a/libs/pom.xml b/libs/pom.xml
deleted file mode 100644
index 532d7487..00000000
--- a/libs/pom.xml
+++ /dev/null
@@ -1,70 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- ~ Copyright (C) 2019 The Android Open Source Project
- ~
- ~ Licensed under the Apache License, Version 2.0 (the "License");
- ~ you may not use this file except in compliance with the License.
- ~ You may obtain a copy of the License at
- ~
- ~ http://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS,
- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ~ See the License for the specific language governing permissions and
- ~ limitations under the License.
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>com.android.tv</groupId>
- <artifactId>auto-libs</artifactId>
- <version>0.1</version>
- <name>Live TVLibs</name>
- <description>
- Live TV Dependencies
- </description>
-
-
- <repositories>
- <repository>
- <id>google</id>
- <name>Google</name>
- <url>https://maven.google.com</url>
- </repository>
- </repositories>
-
- <dependencies>
- <dependency>
- <groupId>com.google.auto.factory</groupId>
- <artifactId>auto-factory</artifactId>
- <version>1.0-beta6</version>
- </dependency>
- <dependency>
- <groupId>com.google.dagger</groupId>
- <artifactId>dagger</artifactId>
- <version>2.15</version>
- </dependency>
- <dependency>
- <groupId>com.google.dagger</groupId>
- <artifactId>dagger-compiler</artifactId>
- <version>2.15</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.google.dagger/dagger-android -->
- <dependency>
- <groupId>com.google.dagger</groupId>
- <artifactId>dagger-android</artifactId>
- <version>2.15</version>
- <type>aar</type>
- </dependency>
- <dependency>
- <groupId>com.google.dagger</groupId>
- <artifactId>dagger-android-processor</artifactId>
- <version>2.15</version>
- </dependency>
- </dependencies>
-
-
-</project>
diff --git a/libs/updateDeps.sh b/libs/updateDeps.sh
deleted file mode 100755
index 766ceedb..00000000
--- a/libs/updateDeps.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-# Copyright (C) 2019 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# Updates all dependenices listed in the pom
-# placing them in the m2 subdirectory.
-m2_dir=$(dirname "$0")/m2
-git rm ${m2_dir}/*
-mvn \
- -DoutputDirectory=${m2_dir} \
- -DincludeScope=runtime \
- -DexcludeArtifactIds=google-java-format,javax.inject,jsr250-api,checker-compat-qual \
- -DexcludeGroupIds=com.android.support \
- dependency:copy-dependencies
-
-git add ${m2_dir}/*