我终于设法混淆了我的Android应用程序,现在我想通过安装APK文件并在模拟器上运行来测试它。
如何在Android Emulator上安装APK文件?
我终于设法混淆了我的Android应用程序,现在我想通过安装APK文件并在模拟器上运行来测试它。
如何在Android Emulator上安装APK文件?
当前回答
在Genymotion中,只需将*.apk文件拖放到模拟器中,它就会自动安装并运行。
http://www.genymotion.com/
其他回答
在命令提示符下转到androidsdk/tools目录,然后键入
adb install fileName.apk (Windows)
./adb install fileName.apk (Linux or Mac)
将“.apk”文件拖放到仿真器窗口中。
转到Shell/Terminal/,然后到达androidsdk/tools目录
adb install fileName.apk // (u can run this command on windows)
or
./adb install fileName.apk //( u can run this command on linux)
(1) 您还可以使用gradle命令安装APK,同时选择产品和风格(调试或发布)。请参阅本指南。
./gradlew assembleDebug (Incase you don't have the APK generated)
./gradlew installDebug
如果您需要重新安装,可以使用以下命令删除设备上任何早期安装的版本
./gradlew uninstallDebug
./gradlew installDebug
(2) 您也可以直接使用adb命令:
为命令行设置adb
export PATH=/Users/mayurik/Library/Android/sdk/platform-tools/adb:/Users/mayurik/Library/Android/sdk/tool
命令行ADB安装
adb -d install pathto/sample.apk (on device)
adb -e install pathto/sample.apk (on emulator)
同时检查此处的文档
$ adb devices
List of devices attached
emulator-5554 device
emulator-5555 device
$ adb -s emulator-5555 install helloWorld.apk
只需将apk拖放到模拟器