如何通过命令行添加android“SDK Update Site”

问题描述 投票:1回答:1

我使用android的sdkmanager命令行工具来更新SDK,我想为插件添加更新站点。我怎样才能从命令行执行此操作。我无法使用UX工具,因为我通过ssh访问主机。

enter image description here

android android-studio
1个回答
0
投票

您需要在repositories.cfg文件夹下创建一个名为~/.android/的文件。

将以下内容粘贴到文件中,并根据需要进行修改。

### User Sources for Android Repository
#Tue Dec 12 15:45:09 PST 2017
disp02=Url1
disp01=Url2
disp00=Url3
count=3
enabled02=true
enabled01=true
enabled00=true
src02=http\://somewhere.com/some-extras-2/SomeArtifact2/some-extra-artifact.xml
src01=http\://somewhere.com/some-extras-1/SomeArtifact1/some-extra-artifact.xml
src00=http\://somewhere.com/some-extras-0/SomeArtifact0/some-extra-artifact.xml
© www.soinside.com 2019 - 2024. All rights reserved.