Skip to content

Commit

Permalink
keep GoogleUtils (#1467)
Browse files Browse the repository at this point in the history
* keep GoogleUtils
  • Loading branch information
elharo authored Jan 12, 2020
1 parent 611d81d commit b70e8ef
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 14 additions & 1 deletion google-api-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,23 @@
<artifactId>commons-codec</artifactId>
<scope>provided</scope>
<version>1.14</version>
</dependency>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>androidx.annotation</groupId>
<artifactId>annotation</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>

<repositories>
<repository>
<id>google</id>
<name>Google Maven Repository</name>
<url>https://maven.google.com/</url>
</repository>
</repositories>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

package com.google.api.client.googleapis;

import androidx.annotation.Keep;
import com.google.api.client.util.SecurityUtils;
import com.google.common.annotations.VisibleForTesting;
import java.io.IOException;
Expand All @@ -30,6 +31,7 @@
* @since 1.12
* @author rmistry@google.com (Ravi Mistry)
*/
@Keep
public final class GoogleUtils {

/** Current release version. */
Expand Down

0 comments on commit b70e8ef

Please sign in to comment.