无法 运行 使用虚拟模拟器演示应用程序
Can't run demo app with virtual emulator
我正在评估 smartface,然后才购买许可证。
我想获得至少一个与 android 虚拟模拟器配合使用的演示应用程序。但是无论我如何尝试,我都会收到此错误:
Checking Android SDK Configuration.
Emulator found: emulator-5554
Generating Exporting Packages for Android profile:"Default"
Pages, JavaScripts files are preparing
Project resources are preparing
Datasets are preparing
Installation packages are creating
Installing Emulator...
Application could not install to emulator-5554
Error Message : pkg: /sdcard/SmartfaceEmulator.apkFailure [INSTALL_FAILED_INVALID_URI]
Please refer to Troubleshooting document!
An error occured on launch! Please launch Smartface Emulator manually on your Android device.
Please refer to Troubleshooting document!
我在 全新 Windows 10 企业版上安装了 Smartface App Studio 4.4.0.4
,所有预请求均由 Smartface 安装程序安装。
非常感谢您的建议!
您遇到的这个问题似乎与 Smartface 无关。我觉得是关于AVD的,另外还有一些关于AVD的问题
您可以查看以下问题以尝试寻找答案:
Failed to install *.apk on device 'emulator-5554': EOF
终于搞清楚了。
事实证明,在我新创建的 AVD 上,sdcard 是不可写的。
就这样解决了...
adb shell
mount -o rw,remount rootfs /
chmod 777 /mnt/sdcard
exit
我正在评估 smartface,然后才购买许可证。
我想获得至少一个与 android 虚拟模拟器配合使用的演示应用程序。但是无论我如何尝试,我都会收到此错误:
Checking Android SDK Configuration.
Emulator found: emulator-5554
Generating Exporting Packages for Android profile:"Default"
Pages, JavaScripts files are preparing
Project resources are preparing
Datasets are preparing
Installation packages are creating
Installing Emulator...
Application could not install to emulator-5554
Error Message : pkg: /sdcard/SmartfaceEmulator.apkFailure [INSTALL_FAILED_INVALID_URI]
Please refer to Troubleshooting document!
An error occured on launch! Please launch Smartface Emulator manually on your Android device.
Please refer to Troubleshooting document!
我在 全新 Windows 10 企业版上安装了 Smartface App Studio 4.4.0.4
,所有预请求均由 Smartface 安装程序安装。
非常感谢您的建议!
您遇到的这个问题似乎与 Smartface 无关。我觉得是关于AVD的,另外还有一些关于AVD的问题
您可以查看以下问题以尝试寻找答案: Failed to install *.apk on device 'emulator-5554': EOF
终于搞清楚了。 事实证明,在我新创建的 AVD 上,sdcard 是不可写的。 就这样解决了...
adb shell
mount -o rw,remount rootfs /
chmod 777 /mnt/sdcard
exit