Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-androidpublisher</artifactId>
<version>v3-rev20260706-2.0.0</version>
<version>v3-rev20260717-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260706-2.0.0'
implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260717-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/*
* 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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.androidpublisher.model;

/**
* An installable set of active APKs. A set of APKs might only contain 1 APK if the app in question
* publishes using APKs. If the app uses app bundles (or a similar technology), this set should
* contain all APKs (even optional ones) that might be installed for this app. A set of APKs should
* be installable together. If certain APKs are exclusive to one another and cannot be installed
* together, then a separate AppStoreAppActiveApkSet should be created.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Google Play Android Developer API. For a detailed
* explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AppStoreAppActiveApkSet extends com.google.api.client.json.GenericJson {

/**
* Required. The ID for the main base application module. Example: base.apk or app.apk.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String baseApkId;

/**
* Optional. IDs for split modules that might be installed in combination with the base APK. Can
* be empty if app bundles (or a similar technology) are not used. Example: config.en.apk.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> splitApkId;

/**
* Required. The ID for the main base application module. Example: base.apk or app.apk.
* @return value or {@code null} for none
*/
public java.lang.String getBaseApkId() {
return baseApkId;
}

/**
* Required. The ID for the main base application module. Example: base.apk or app.apk.
* @param baseApkId baseApkId or {@code null} for none
*/
public AppStoreAppActiveApkSet setBaseApkId(java.lang.String baseApkId) {
this.baseApkId = baseApkId;
return this;
}

/**
* Optional. IDs for split modules that might be installed in combination with the base APK. Can
* be empty if app bundles (or a similar technology) are not used. Example: config.en.apk.
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getSplitApkId() {
return splitApkId;
}

/**
* Optional. IDs for split modules that might be installed in combination with the base APK. Can
* be empty if app bundles (or a similar technology) are not used. Example: config.en.apk.
* @param splitApkId splitApkId or {@code null} for none
*/
public AppStoreAppActiveApkSet setSplitApkId(java.util.List<java.lang.String> splitApkId) {
this.splitApkId = splitApkId;
return this;
}

@Override
public AppStoreAppActiveApkSet set(String fieldName, Object value) {
return (AppStoreAppActiveApkSet) super.set(fieldName, value);
}

@Override
public AppStoreAppActiveApkSet clone() {
return (AppStoreAppActiveApkSet) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
* 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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.androidpublisher.model;

/**
* Information about active APKs of an app store hosted app.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Google Play Android Developer API. For a detailed
* explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AppStoreAppActiveApks extends com.google.api.client.json.GenericJson {

/**
* Required. List specifying which APK sets are distributed together. This list should contain all
* APKs that you're distributing for this app. Add an entry for each individual installable set of
* APKs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<AppStoreAppActiveApkSet> activeApkSets;

static {
// hack to force ProGuard to consider AppStoreAppActiveApkSet used, since otherwise it would be stripped out
// see https://github.com/google/google-api-java-client/issues/543
com.google.api.client.util.Data.nullOf(AppStoreAppActiveApkSet.class);
}

/**
* Required. List specifying which APK sets are distributed together. This list should contain all
* APKs that you're distributing for this app. Add an entry for each individual installable set of
* APKs.
* @return value or {@code null} for none
*/
public java.util.List<AppStoreAppActiveApkSet> getActiveApkSets() {
return activeApkSets;
}

/**
* Required. List specifying which APK sets are distributed together. This list should contain all
* APKs that you're distributing for this app. Add an entry for each individual installable set of
* APKs.
* @param activeApkSets activeApkSets or {@code null} for none
*/
public AppStoreAppActiveApks setActiveApkSets(java.util.List<AppStoreAppActiveApkSet> activeApkSets) {
this.activeApkSets = activeApkSets;
return this;
}

@Override
public AppStoreAppActiveApks set(String fieldName, Object value) {
return (AppStoreAppActiveApks) super.set(fieldName, value);
}

@Override
public AppStoreAppActiveApks clone() {
return (AppStoreAppActiveApks) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/*
* 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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.androidpublisher.model;

/**
* Details about the app.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Google Play Android Developer API. For a detailed
* explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AppStoreAppDetails extends com.google.api.client.json.GenericJson {

/**
* Required. The app developer's contact email address.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String contactEmail;

/**
* Required. The app developer's name.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String developerName;

/**
* Optional. Website link for the developer or app.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String developerWebsite;

/**
* Required. The app developer's contact email address.
* @return value or {@code null} for none
*/
public java.lang.String getContactEmail() {
return contactEmail;
}

/**
* Required. The app developer's contact email address.
* @param contactEmail contactEmail or {@code null} for none
*/
public AppStoreAppDetails setContactEmail(java.lang.String contactEmail) {
this.contactEmail = contactEmail;
return this;
}

/**
* Required. The app developer's name.
* @return value or {@code null} for none
*/
public java.lang.String getDeveloperName() {
return developerName;
}

/**
* Required. The app developer's name.
* @param developerName developerName or {@code null} for none
*/
public AppStoreAppDetails setDeveloperName(java.lang.String developerName) {
this.developerName = developerName;
return this;
}

/**
* Optional. Website link for the developer or app.
* @return value or {@code null} for none
*/
public java.lang.String getDeveloperWebsite() {
return developerWebsite;
}

/**
* Optional. Website link for the developer or app.
* @param developerWebsite developerWebsite or {@code null} for none
*/
public AppStoreAppDetails setDeveloperWebsite(java.lang.String developerWebsite) {
this.developerWebsite = developerWebsite;
return this;
}

@Override
public AppStoreAppDetails set(String fieldName, Object value) {
return (AppStoreAppDetails) super.set(fieldName, value);
}

@Override
public AppStoreAppDetails clone() {
return (AppStoreAppDetails) super.clone();
}

}
Loading
Loading