这两个更新网站都是为了控制 Android SDK Manager 中的软件包下载和更新。它们的不同之处在于 repository2-2.xml
包含了最新的 Android SDK 版本和工具,而 repository2-1.xml
是之前版本的更新网站,只包含相对较旧的 SDK 和工具版本。
如果你想使用最新的 Android SDK,推荐使用 repository2-2.xml
。在 Gradle 脚本中使用 repository2-2.xml
的示例代码如下:
allprojects {
repositories {
// 使用 repository2-2.xml 更新网站
maven { url 'https://dl.google.com/android/repository/repository2-2.xml' }
google()
}
}
如果你需要使用较旧的 Android SDK 版本,可以使用 repository2-1.xml
。在 Gradle 脚本中使用 repository2-1.xml
的示例代码如下:
allprojects {
repositories {
// 使用 repository2-1.xml 更新网站
maven { url 'https://dl.google.com/android/repository/repository2-1.xml' }
google()
}
}