tree: 87450eba2f2c5924ac77d7b72b46d4ae492205a8 [path history] [tgz]
  1. src/
  2. BUILD.bazel
  3. README.md
apps/rewardedads/README.md

An implementation of Google AdMob Rewarded Ads

This app implements the verifier side of Server-Side Verification of Google AdMob Rewarded Ads.

Latest Release

The most recent release is 1.7.0, released 2022-08-09. API docs can be found here.

The Maven group ID is com.google.crypto.tink, and the artifact ID is apps-rewardedads.

To add a dependency using Maven:

<dependency>
  <groupId>com.google.crypto.tink</groupId>
  <artifactId>apps-rewardedads</artifactId>
  <version>1.7.0</version>
</dependency>

Snapshots

Snapshots of this app built from the master branch are available through Maven using version HEAD-SNAPSHOT. API docs can be found here.

To add a dependency using Maven:

<repositories>
<repository>
  <id>sonatype-snapshots</id>
  <name>sonatype-snapshots</name>
  <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  <snapshots>
    <enabled>true</enabled>
    <updatePolicy>always</updatePolicy>
  </snapshots>
  <releases>
    <updatePolicy>always</updatePolicy>
  </releases>
</repository>
</repositories>

<dependency>
  <groupId>com.google.crypto.tink</groupId>
  <artifactId>apps-rewardedads</artifactId>
  <version>HEAD-SNAPSHOT</version>
</dependency>