gpt4 book ai didi

android - 以编程方式将 'beta' apk 提升为 'production'

转载 作者:行者123 更新时间:2023-11-30 00:02:50 25 4
gpt4 key购买 nike

我正在使用 Google Play Developer API v2 在 Play 商店中以编程方式上传我的测试版 apks,它运行良好:-)

现在,我想以编程方式将 beta apk 从“测试版”轨道“提升”到“生产”轨道(这样我就不需要再在 Google Dev Console 上手动执行此操作. 我的应用程序套件由 10 个应用程序组成.. 这需要时间)

我正在尝试,但我不清楚如果不重新上传 apk 应该怎么做。
我想要实现的是修改以前上传的 apks,只需更改 Track ,从“测试版”到“生产版”。

下面是我写的代码,它做了:

  • 找到所有轨道
  • 找到“测试版”轨道
  • 找到对应的apk
  • 更改(但不是正确的方式)apk 轨道从“测试版”到“生产版”
  • 提交更改 -> 以下异常:
SEVERE: Exception was thrown while updating listing
com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 Forbidden
{
"code" : 403,
"errors" : [ {
"domain" : "androidpublisher",
"message" : "Testing-track (alpha/beta) APK with version code 1522428584 appears in another track",
"reason" : "testingTrackApkInMultipleTracks"
} ],
"message" : "Testing-track (alpha/beta) APK with version code 1522428584 appears in another track"
}
at com.google.api.client.googleapis.json.GoogleJsonResponseException.from(GoogleJsonResponseException.java:146)
at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:113)
at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:40)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest$1.interceptResponse(AbstractGoogleClientRequest.java:321)
at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1065)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:419)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:352)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.execute(AbstractGoogleClientRequest.java:469)
at com.elementique.tools.publish.elementique.ElementiquePromoteBetaApkToProduction.main(ElementiquePromoteBetaApkToProduction.java:74)

根据异常(exception)情况,我编写的代码不会修改现有的 apk,而是尝试创建一个与现有 beta track 具有完全相同 ID 的新 apk。
我明白这是错误的,但不知道如何正确地做..

这是代码:有人可以向我解释如何以正确的方式做到这一点吗?

谢谢。

package com.elementique.tools.publish.elementique;

import com.elementique.tools.publish.AndroidPublisherHelper;
import com.google.api.services.androidpublisher.AndroidPublisher;
import com.google.api.services.androidpublisher.AndroidPublisher.Edits;
import com.google.api.services.androidpublisher.model.*;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import java.io.IOException;
import java.security.GeneralSecurityException;
import java.util.ArrayList;
import java.util.List;

public class ElementiquePromoteBetaApkToProduction {

private static final Log log = LogFactory.getLog(ElementiquePromoteBetaApkToProduction.class);

private static final String PACKAGE_NAME = "com.elementique.home";

public static final String TRACK_BETA = "beta";
public static final String TRACK_PRODUCTION = "production";

public static void main(String[] args) {
try {
// Create the API androidPublisher service.
final AndroidPublisher androidPublisher = AndroidPublisherHelper.init("Elementique", null);
final Edits edits = androidPublisher.edits();

// Create a new edit to make changes.
Edits.Insert insertEdit = edits.insert(PACKAGE_NAME, null);
AppEdit insertAppEdit = insertEdit.execute();

// search for 'beta' apk(s) in the 'beta' track..
// first list all tracks..
TracksListResponse trackListResponse = edits.tracks().list(PACKAGE_NAME, insertAppEdit.getId()).execute();
for (Track track : trackListResponse.getTracks()) {
// filter for beta track..
if (TRACK_BETA.equals(track.getTrack())) {
// beta track found...
System.out.println("Beta Track found!\n" + track.toPrettyString());
// in my case, I am supposed to have exactly one 'beta' apk
List<Integer> betaApkVersionCodes = track.getVersionCodes();
if (betaApkVersionCodes.size() == 1) {
// one apk: OK, that's the 'beta' apk I want to promote to 'production'
Integer betaApkVersionCode = betaApkVersionCodes.get(0);

// now search for the given apk among all existing apks (is it the good way to proceed..??)
ApksListResponse apksListResponse = edits.apks().list(PACKAGE_NAME, insertAppEdit.getId()).execute();
for (Apk apk : apksListResponse.getApks()) {
// is it our 'beta' apk?
if (betaApkVersionCode.equals(apk.getVersionCode())) {
System.out.println("Beta apk found!\n" + apk.toPrettyString());
// OK, we got it.
// now trying to change the 'track' of this apk from 'beta' to 'production'
// and this is not the way to proceed...
List<Integer> apkVersionCodes = new ArrayList<>();
apkVersionCodes.add(apk.getVersionCode());
Edits.Tracks.Update updateTrackRequest =
edits.tracks().update(
PACKAGE_NAME,
insertAppEdit.getId(),
TRACK_PRODUCTION,
new Track().setVersionCodes(apkVersionCodes));
Track updatedTrack = updateTrackRequest.execute();
log.info(String.format("Track %s has been updated.", updatedTrack.getTrack()));

// Commit changes for edit.
Edits.Commit commitRequest = edits.commit(PACKAGE_NAME, insertAppEdit.getId());
AppEdit commitAppEdit = commitRequest.execute();
log.info(PACKAGE_NAME + " beta apk moved to production (" + commitAppEdit.getId());
System.exit(0);
}
}
}
}
}
} catch (IOException | GeneralSecurityException ex) {
log.error("Exception was thrown while updating listing", ex);
}
}
}

(不要告诉我括号 hell ,我只是这样写这段代码来做一个简单的测试;-)

注意事项:

  • 原始 Google Smaple 项目是 here和“Google Play Developer API V2”maven artifact here
  • 一些附加信息:javadoc here和一些额外的(非 Java)信息 here

最佳答案

搞定了:-)
可以在这里找到解释:https://developers.google.com/android-publisher/tracks

以编程方式将“测试版”轨道提升为“生产”轨道的示例代码:

package com.elementique.tools.publish.elementique;

import com.elementique.tools.publish.AndroidPublisherHelper;
import com.google.api.services.androidpublisher.AndroidPublisher;
import com.google.api.services.androidpublisher.AndroidPublisher.Edits;
import com.google.api.services.androidpublisher.model.AppEdit;
import com.google.api.services.androidpublisher.model.Track;
import com.google.api.services.androidpublisher.model.TracksListResponse;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import java.io.IOException;
import java.security.GeneralSecurityException;
import java.util.ArrayList;
import java.util.List;

// Google Play Developer API v2 javadoc:
// https://developers.google.com/resources/api-libraries/documentation/androidpublisher/v2/java/latest/index.html?com/google/api/services/androidpublisher/AndroidPublisher.html
// + this: https://developers.google.com/android-publisher/api-ref/

public class ElementiquePromoteBetaApkToProduction {

private static final Log log = LogFactory.getLog(ElementiquePromoteBetaApkToProduction.class);

private static final String PACKAGE_NAME = "com.elementique.home";

public static final String TRACK_BETA = "beta";
public static final String TRACK_PRODUCTION = "production";

public static void main(String[] args) {
try {
final AndroidPublisher androidPublisher = AndroidPublisherHelper.init("Elementique", null);
final Edits edits = androidPublisher.edits();

// Create a new edit to make changes.
Edits.Insert insertEdit = edits.insert(PACKAGE_NAME, null);
AppEdit insertAppEdit = insertEdit.execute();

// Promote beta to production: doc here:
// https://developers.google.com/android-publisher/tracks

TracksListResponse trackListResponse = edits.tracks().list(PACKAGE_NAME, insertAppEdit.getId()).execute();

Track betaTrack = null;
Track productionTrack = null;

// list current tracks.
// searching for exactly one beta and one production...
for (Track track : trackListResponse.getTracks()) {
if (TRACK_BETA.equals(track.getTrack())) {
if (track.getVersionCodes().size() == 1) {
// one version: OK, that's the 'beta' apk I want to promote to 'production'
betaTrack = track;
log.info(PACKAGE_NAME + ": found 'beta' apk " + betaTrack.getVersionCodes().get(0));
}
} else if (TRACK_PRODUCTION.equals(track.getTrack())) {
if (track.getVersionCodes().size() == 1) {
// one version: OK, that's the 'production' apk I want to replace with the former 'beta' apk
productionTrack = track;
log.info(PACKAGE_NAME + ": found 'production' apk" + productionTrack.getVersionCodes().get(0));
}
}
}

if (betaTrack != null && productionTrack != null) {
// first set production track to version of current beta
Edits.Tracks.Update updateProductionTrackRequest =
edits.tracks().update(
PACKAGE_NAME,
insertAppEdit.getId(),
TRACK_PRODUCTION,
new Track().setVersionCodes(betaTrack.getVersionCodes()));
updateProductionTrackRequest.execute();

// .. then clear beta version(no more beta apk)
Edits.Tracks.Update updateBetaTrackRequest =
edits.tracks().update(
PACKAGE_NAME,
insertAppEdit.getId(),
TRACK_BETA,
new Track().setVersionCodes(new ArrayList<>()));
updateBetaTrackRequest.execute();

// Commit changes for edit
Edits.Commit commitRequest = edits.commit(PACKAGE_NAME, insertAppEdit.getId());
AppEdit commitAppEdit = commitRequest.execute();
log.info(PACKAGE_NAME + ":" +
" 'production' apk " + productionTrack.getVersionCodes().get(0) + "" +
" replaced by 'beta' apk " + betaTrack.getVersionCodes().get(0));
}
} catch (IOException | GeneralSecurityException ex) {
log.error(PACKAGE_NAME + " : Error while trying to promote 'beta' apk to 'production'", ex);
}
}
}

关于android - 以编程方式将 'beta' apk 提升为 'production',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49588393/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com