2

将 Android 项目导入 VCS(Google Cloud 源存储库)时,我可以选择云项目,但查看存储库时出现以下错误:

在此处输入图像描述

我正在关注这个文档来导入项目:https ://cloud.google.com/tools/android-studio/vcs 。

Project level build.gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
4

2 回答 2

0

我不太理想的解决方案是回退到通过 https 使用 git。设置步骤在 GCP 源代码库中的克隆 -> 手动生成的凭据下提供(基本上您运行 cmd 或 bash 脚本来存储 git cookie)。

于 2019-10-10T13:26:12.067 回答
0

我可以看到三个可能的原因:

  1. 权限问题,请记住使用此处的三种方法之一正确设置身份验证 。

  2. Android Studio 对话框中的项目名称和项目 ID (仅使用项目 ID)之间的混淆。

  3. 没有在 GCP 项目上设置“默认”存储库。要在您的 Google Cloud 项目上创建代码库,请按照此 说明操作 并将您的代码库命名为默认值。

于 2019-10-10T09:00:46.130 回答