Android SDK 설치를 자동화할 수 있는 방법이 있습니까?
이제 Android SDK와 AVD Manager를 다운로드하여 설치하고 UI를 통해 API, 도구를 설치해야 합니다.이 프로세스를 자동화할 수 있는 방법이 있습니까?
갱신하다
최신 버전은 다음을 소개합니다.sdkmanager
Android SDK의 패키지를 보고 설치하고 업데이트하고 제거할 수 있는 명령줄 도구입니다.
그sdkmanager
도구는 Android SDK Tools 패키지(25.2.3 이상)에 제공되며,android_sdk/tools/bin/
.
sdkmanager [--uninstall] [<common args>] [--package_file <file>] [<packages>...]
sdkmanager --update [<common args>]
sdkmanager --list [<common args>]
sdkmanager --licenses [<common args>]
In its first form, installs, or uninstalls, or updates packages.
By default, the listed packages are installed or (if already installed)
updated to the latest version.
--uninstall: uninstalled listed packages.
<package> is a sdk-style path (e.g. "build-tools;23.0.0" or
"platforms;android-23").
<package-file> is a text file where each line is a sdk-style path
of a package to install or uninstall.
Multiple --package_file arguments may be specified in combination
with explicit paths.
In its second form (with --update), all installed packages are
updated to the latest version.
In its third form, all installed and available packages are printed
out.
In its fourth form (with --licenses), show and offer the option to
accept licenses for all available packages that have not already been
accepted.
Common Arguments:
--sdk_root=<sdkRootPath>: Use the specified SDK root instead of the SDK
containing this tool
--channel=<channelId>: Include packages in channels up to <channelId>.
Common channels are:
0 (Stable), 1 (Beta), 2 (Dev), and 3 (Canary).
--include_obsolete: With --list, show obsolete packages in the
package listing. With --update, update obsolete
packages as well as non-obsolete.
--no_https: Force all connections to use http rather than https.
--proxy=<http | socks>: Connect via a proxy of the given type.
--proxy_host=<IP or DNS address>: IP or DNS address of the proxy to use.
--proxy_port=<port #>: Proxy port to connect to.
* If the env var REPO_OS_OVERRIDE is set to "windows",
"macosx", or "linux", packages will be downloaded for that OS.
패키지를 업데이트하려면 다음을 실행합니다.
sdkmanager --update
라이센스를 수락하려면,
yes | sdkmanager --licenses
이전 답변
더 (The) ()android
명령이 더 이상 사용되지 않습니다!)
자동화에 가까워질수록 다음과 같은 이점을 얻을 수 있습니다.
android update sdk --no-ui
android
에서는 자동 업데이트에 대한 다음 옵션을 제공합니다.
Action "update sdk":
Updates the SDK by suggesting new platforms to install if available.
Options:
-f --force Forces replacement of a package or its parts, even if something has been modified
-u --no-ui Updates from command-line (does not display the GUI)
-o --obsolete Installs obsolete packages
-t --filter A filter that limits the update to the specified types of packages in the form of
a comma-separated list of [platform, tool, platform-tool, doc, sample, extra]
-s --no-https Uses HTTP instead of HTTPS (the default) for downloads
-n --dry-mode Simulates the update but does not download or install anything
설치에 사용할 수 있는 패키지를 나열하려면
android list sdk
그리고 주문된 패키지 목록을 얻을 수 있습니다. 예를 들어
Packages available for installation or update: 9
1- ARM EABI v7a System Image, Android API 15, revision 2
2- Intel x86 Atom System Image, Android API 15, revision 1
3- Android Support, revision 8
4- Google AdMob Ads SDK, revision 6
5- Google Analytics SDK, revision 2
6- Google Play APK Expansion Library, revision 1
7- Google Play Billing Library, revision 2
8- Google Play Licensing Library, revision 2
9- Google Web Driver, revision 2
또한 다음을 사용하는 경우 원하는 구성 요소로만 업데이트를 제한할 수 있습니다.--filter
android update sdk --filter <component> --no-ui
여기서 구성요소는 다음 중 하나 이상입니다.
- 이 반환한 .
android list sdk
(예: 1, 패키지 인덱스라고도 함) - 부가적인
- 의사의
- 추가의
- 연단
- 연단 도구
- 견본의
- 원천
- 시스템 이미지
- 도구.
또는 하나 이상의 특정 식별자일 수 있습니다.예를 들어, 특정 패키지의 작은 세트만 다운로드하려는 경우 다음을 수행할 수 있습니다.
android update sdk -u --filter platform-tools,android-16,extra-android-support
플랫폼 툴, API 레벨 16 및 지원 패키지 JAR 파일만 제공됩니다.이것은 빌드 머신을 만들 때만 사용할 수 있고 절대 사용하지 않을 추가적인 모든 것을 다운로드하는 데 비용을 지불해야 하는 경우에 매우 유용합니다.
사용 가능한 옵션을 보려면 --help(예:
android --help list sdk
Usage:
android [global options] list sdk [action options]
Global options:
-h --help : Help on a specific command.
-v --verbose : Verbose mode, shows errors, warnings and all messages.
--clear-cache: Clear the SDK Manager repository manifest cache.
-s --silent : Silent mode, shows errors only.
Action "list sdk":
Lists remote SDK repository.
Options:
-o --obsolete : Deprecated. Please use --all instead.
-a --all : Lists all available packages (including obsolete and
installed ones)
--proxy-host: HTTP/HTTPS proxy host (overrides settings if defined)
--proxy-port: HTTP/HTTPS proxy port (overrides settings if defined)
-s --no-https : Uses HTTP instead of HTTPS (the default) for downloads.
-e --extended : Displays extended details on each package
-u --no-ui : Displays list result on console (no GUI) [Default: true]
이건 내게 효과가 없었어요
echo "y" | android ....
그래서 저는 여기까지 오게 되었습니다.
expect -c '
set timeout -1 ;
spawn sudo /opt/android-sdk/tools/android update sdk -u;
expect {
"Do you accept the license" { exp_send "y\r" ; exp_continue }
eof
}
'
Travis CI에 SDK를 설치하고 업데이트하는 데 사용합니다.
curl --location http://dl.google.com/android/android-sdk_r22.3-linux.tgz | tar -x -z -C $HOME
export ANDROID_HOME=$HOME/android-sdk-linux
export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk --no-ui --filter platform-tool,android-19,sysimg-19,build-tools-19.0.1
모든 라이센스에 'y'로 응답하려면 스크립트에서 다음을 시도할 수 있습니다.
(while :
do
echo 'y'
sleep 2
done) | android update sdk -u .....
여전히 모든 안드로이드 패키지를 다운로드하는 방법을 찾고 있는 사람을 위해, 저는 그것을 위한 스크립트를 작성했습니다.사용되지 않는 모든 패키지를 다운로드합니다.
#!/binbash
# Install all non-obsolete Android SDK packages.
# author: Tai Le Tien (letientai299 at gmail.com)
function install_sdk {
android update sdk -u -s -a -t "$1"
}
function fetch_non_obsoled_package_indices {
# Fetch the SDK list using non-https connections
android list sdk -u -s -a |\
# Filter obsoleted packages
sed '/\(Obsolete\)/d' |\
# Filter to take only the index number of package
sed 's/^[ ]*\([0-9]*\).*/\1/' |\
# Remove the empty lines
sed -n 's/^[^ $]/\0/p'
}
for package_index in $(fetch_non_obsoled_package_indices)
do
echo "====================================================================="
echo "Start to install package: ${package_index}"
echo "====================================================================="
# Auto accept license
echo -e "y" | install_sdk "${package_index}"
echo
echo
done
내 GitHub 저장소에서도 확인할 수 있습니다.
장점:
- 에
expect
. - 머리가 없는.
단점:
- 수동으로 , SDK는 기본 SDK를 넣습니다.
android
당신의 길로. - 이 스크립트는 Unix에서만 작동합니다.
최신 Android 버전(예: 25.2.5)에서는 (대신)을 사용해야 합니다.android
명령).
패키지 설치 예:
android-sdk/tools/bin/sdkmanager "extras;android;m2repository"
사용 가능한 모든 패키지 목록을 가져오는 명령:
android-sdk/tools/bin/sdkmanager --verbose --list
이 웹 페이지에는 SDK-tools의 다운로드 링크가 나열되어 있습니다.
도커 이미지에 안드로이드를 설치할 수 있는 오픈 소스 저장소 도커 안드로이드 링크입니다.
다음 SO 질문에서도 답을 찾을 수 있습니다. 유용한 모든 SDK 라이센스를 자동으로 수락합니다.
Android Plugin for Gradle 버전 2.2.0부터는 누락된 SDK 구성 요소가 자동으로 다운로드됩니다.
나도 이것에 좌절하고 Gradle 플러그인을 만들었습니다.com.quittle.setup-android-sdk
필요한 것을 감지하고 설치할 수 있습니다.Windows, OS X 및 Linux에서 작동하며 Gradle로 빌드하는 경우 추가 종속성이 필요하지 않습니다.
관심이 있으시면 여기에서 제 문서를 확인하실 수 있습니다. https://github.com/quittle/gradle-setup-android-sdk
자동화하려면 다음과 같이 하십시오.sdkmanager.bat --licenses
Windows(윈도우)에서 자동화를 통해 인프라 구축을 위해 설치하는 경우 프롬프트 표시...실행하지 마십시오.파이프를 사용하는 방법을 찾느라 시간을 낭비하지 마십시오.y
그 안에.노력했지만 실패했습니다.
대신 - 한 번만 실행하고 파일을 생성합니다.C:\android\android-sdk\licenses
(실행 중인 위치)C:\android\android-sdk\tools\bin\sdkmanager.bat
설치 루트가 다를 수 있습니다.
이러한 파일을 가져와 자동 설정 스크립트에서 가져올 수 있는 위치에 배치합니다.개인적으로, Ansible은 나의 독이다, 그래서:
# Note to future-us:
# These are magical files generated by running `c:/android/android-sdk/tools/bin/sdkmanager.bat --licenses`
# This, delightfully, is interactive, and wants to _actually_ read the keyboard buffer.
# That's reputedly possible via SendKeys. I elected to not try that.
# So, instead:
# 1) remote to an instance like a cave-dweller
# 2) run `c:/android/android-sdk/tools/bin/sdkmanager.bat --licenses` in a prompt.
# 3) _actually type_ `y` however many godforsaken times you need to.
# 4) meticulously harvest `c:/android/android-sdk/licenses/*` to this task.
# (you don't need the newline that they thoughtfully put before the hash in each file).
- name: set up android licenses by hand
win_lineinfile:
path: c:/android/android-sdk/licenses/{{ item.name }}
line: "{{ item.line }}"
create: true
with_items:
- {name: "android-googletv-license", line: "SOME HASH"}
- {name: "android-sdk-license", line: "SOME OTHER HASH"}
...
필요한 {사용되지 않는} 패키지만 다운로드하는 스크립트, 소스, 에뮬레이터-이미지, doc}개:
#!/bin/bash
set -e
# cd into where tools/android can be found
if [[ -d "$ANDROID_HOME" ]]; then
cd "$ANDROID_HOME"
elif [[ -x "$(dirname "$0")/tools/android" ]]; then
cd "$(dirname "$0")"
else
echo "FAILED: Cannot find ANDROID_HOME/tools/android"
exit 1
fi
android () {
"$(dirname $0)/tools/android" "$@"
}
needed_packages () {
android list sdk -u -s -e \
| grep '^id:' \
| cut -d'"' -f2 \
| grep -v 'source' \
| grep -v 'sys-img' \
| grep -v 'doc' \
| paste -d, -s -
}
main () {
(while : ; do
echo 'y'
sleep 1
done) | android update sdk -u -s -a -t "$(needed_packages)"
}
main
일부 부분은 다른 답변에서 발췌한 것입니다.
초보 안드로이드 개발자이지만 경험이 풍부한 자바 개발자에게는 이전 답변의 악몽을 모두 지나쳐도 어떤 의존성이 있는지 아는 것이 정말 황당합니다.
제 동료가 안드로이드 스튜디오(IntelliJ IDEA 기반 :-)를 사용하라고 조언했는데, 특히 위의 악몽 때문입니다.
나는 그의 충고를 따랐습니다.
그러나 설치에 대한 기본값을 수락하지 않았고 소프트웨어 드라이브에 설치하려고 했습니다.그것은 악몽으로 밝혀졌습니다.SDK 대화는 매달리는 것 같았고 전혀 직관적이지 않았습니다.그래서 여기 오게 된 거예요
위의 내용을 읽은 후 스튜디오에 다시 시도해 보았는데, 이번에는 설치에 대한 기본값을 모두 수락했습니다.
PRESTO...그것은 + + + 및 SDK와 같은 프롬프트 없이 몇 개의 대화에서 모든 SDK 종속성(핵심 종속성)을 처리했습니다.
그러므로 저는 그것을 초보자에게 추천하고 싶습니다.푸딩이 다운로드될 때의 증거는 다음과 같습니다.
다운로드하여 설치한 Studio 버전:
창 버전:
그리고 여기 좋은 일을 한 후에:
언급URL : https://stackoverflow.com/questions/4681697/is-there-a-way-to-automate-the-android-sdk-installation
'programing' 카테고리의 다른 글
강력한 속성 속성은 무엇입니까? (0) | 2023.08.08 |
---|---|
vertical-align: 중간이 스팬 또는 디비에서 작동하지 않는 이유는 무엇입니까? (0) | 2023.08.08 |
Maria DB 10.3의 MSSQL에서 MSSQL 식별자 괄호 무시/사용 (0) | 2023.08.08 |
파워셸 - 가장 가까운 정수로 반올림 (0) | 2023.08.08 |
Excel에서 셀에 문자열 쓰기 (0) | 2023.08.08 |