Skip to content

Files

Latest commit

e479f6d · Jan 25, 2025

History

History

Google Play Custom App Publishing API Client Library for Java

API to create and publish custom Android apps

This page contains information about getting started with the Google Play Custom App Publishing API using the Google API Client Library for Java. In addition, you may be interested in the following documentation:

Installation

Maven

Add the following lines to your pom.xml file:

<project>
  <dependencies>
    <dependency>
      <groupId>com.google.apis</groupId>
      <artifactId>google-api-services-playcustomapp</artifactId>
      <version>v1-rev20211022-2.0.0</version>
    </dependency>
  </dependencies>
</project>

Gradle

repositories {
  mavenCentral()
}
dependencies {
  implementation 'com.google.apis:google-api-services-playcustomapp:v1-rev20211022-2.0.0'
}