Android Studio의 에뮬레이터에 APK를 설치하는 방법은 무엇입니까?
터미널에서 Android Studio의 에뮬레이터에 APK를 어떻게 설치합니까?
Eclipse에서 우리는
/home/pcname/android-sdks/platform-tools/adb -s emulator-5554 install /home/pcname/Downloads/apkname.apk
이제 Android Studio에서는 어떻습니까?
사용중인 항목 (Eclipse 또는 Android Studio)에 관계없이 .apk 파일을 에뮬레이터에 설치할 수 있습니다.
내가 항상하는 일은 다음과 같습니다. (완전 초보자 용)
1- 에뮬레이터를 실행하고 완전히 시작될 때까지 기다립니다.
2- sdk 설치 폴더로 이동 한 다음 platform-tools 로 이동 합니다 ( adb.exe 라는 실행 파일이 표시되어야 함 ).
3- 새 파일을 만들고 run.bat 라고 부르고 메모장으로 파일을 편집하고 CMD 를 작성 하고 저장하십시오.
4- 원하는 APK를 동일한 폴더에 복사
5- 이제 run.bat를 열고 작성하십시오. adb install "your_apk_file.apk"
6- 설치가 완료 될 때까지 기다립니다.
7- 짜잔 APK가 에뮬레이터에 설치됩니다.
참고 : 이미있는 경우 응용 프로그램을 다시 설치하려면adb install -r "your_apk_file.apk"
완전 초심자 분들께 말씀 드렸듯이 자세한 설명이있어서 죄송합니다
이 도움을 바랍니다.
문안 인사,
Tarek
시뮬레이터 실행-> yourApp.apk를 시뮬레이터 화면에 끌어다 놓습니다. 그게 다야. 명령이 없습니다.
Mac을 사용하고 명령을 찾을 수 없음 오류가 발생하는 경우 수행해야 할 작업은
유형
./adb install "yourapk.apk"
에뮬레이터를 Android Studio Tools->Android-> AVD Manager
시작한 다음 에뮬레이터 이미지를 선택하고 시작하십시오.
에뮬레이터가 시작되면 APK를 끌어서 놓기 만하면됩니다. 매우 간단합니다.
안드로이드 스튜디오 에뮬레이터에서 apk 파일을 실행하려면 apk를 에뮬레이터로 드래그하면됩니다.
에뮬레이터를 시작한 다음 sdk / platform-tools로 이동하여 adb를 사용하여 apk를 설치하는 것이 훨씬 쉽습니다. 처럼:
adb 설치 xxx.apk
It will install it on running emulator.
Just drag APK file to android emulator it will install automatically.
For Linux: once emulator is running, the following worked for me.
Because I installed the Android SDK on my home directory, I have the following file structure:
home/Android/Sdk/platform-tools/adb
home/AndroidStudioProjects/Metronome.adk
AndroidStudioProjects is a file folder I made for my Android projects. "Metronome.adk" is the file I want to run.
So, using Terminal from the home directory...
./Android/Sdk/platform-tools/adb install ./AndroidStudioProjects/Metronome.adk
Being a Linux novice, I often forget the need to put the "./" in when trying to locate a file or run a command.
After the command achieves "Success", the app is in the Apps area of the emulator and can be run.
Just download the apk from talkback website
Drag the downloaded apk to the started emulator, Go to settings on emulator > Search for talkback, you will now find it there
Drag and drop apk if the emulator is launched from Android Studio. If the emulator is started from command line, drag and drop doesn't work, but @Tarek K. Ajaj instructions (above) work.
Note: Installed app won't automatically appear on the home screen, it is in the apps container - the dotted grid icon. It can be dragged from there to the home screen.
In Android Studio: View
- Tool Windows
- Gradle
In the Gradle tool window navigate to your :app
- Tasks
- install
and then execute (by double-clicking): any of your install*
tasks: e.g. installDebug
, installRelease
Note: the apk will also automatically installed when you Run your application
참고 URL : https://stackoverflow.com/questions/17167636/how-to-install-an-apk-on-the-emulator-in-android-studio
'program story' 카테고리의 다른 글
iOS 용 구문 분석 : 앱 실행시 오류 (0) | 2020.10.06 |
---|---|
개체에 대해 LINQ를 사용한 페이징 (0) | 2020.10.06 |
번 들러가 JSON gem을 설치하지 않는 이유는 무엇입니까? (0) | 2020.10.06 |
객체-관계형 매핑 프레임 워크 란 무엇입니까? (0) | 2020.10.06 |
Chart.js를 사용하여 도넛 차트 내부에 텍스트를 추가하는 방법은 무엇입니까? (0) | 2020.10.06 |