zoukankan      html  css  js  c++  java
  • linux eclipse中运行android AVD 错误

    当使用android的AVD时提示以下错误:
    Starting emulator for AVD 'NexusOne' ERROR: 32-bit Linux Android emulator binaries are DEPRECATED, to use them you will have to do at least one of the following: - Use the '-force-32bit' option when invoking 'emulator'. - Set ANDROID_EMULATOR_FORCE_32BIT to 'true' in your environment. Either one will allow you to use the 32-bit binaries, but please be aware that these will disappear in a future Android SDK release. Consider moving to a 64-bit Linux system before that happens.

    提示我们有两种方法可以解决:
    1)、修改~/.bashrc,添加一句:export ANDROID_EMULATOR_FORCE_32BIT=true;重启;
    2)、

    1. In Eclipse, click your Android project folder and then select Run > Run Configurations...

    2. In the left panel of the Run Configurations dialog, select your Android project run configuration or create a new configuration.

    3. Click the Target tab.

    In the Additional Emulator Command Line Options field, enter:

    -force-32bit 

    Run your Android project using this run configuration.

    在终端运行模拟器:

    emulator -avd name -partition-size 128 

    命令行下创建AVD

    1. 输入命令查看的可用android版本平台:

    android list targets

    1. 创建AVDandroid create avd --name <your_avd_name> --target<targetID>

    其他命令:

    android list avd 列出自己创建的模拟器

    android delete avd --name avd_name 删除模拟器

    emulator -debug avd_config -avd avd_name 指定用某模拟器

    adb install c:aa.apk 安装应用程序到模拟器

    rm com.aa.pak 卸载应用程序

  • 相关阅读:
    IE11和传统asp.net的兼容问题
    时区和夏令时
    GTA项目 三, 使用 bootstrap table展示界面,使得data和UI分离
    GTA项目 二, JSON接口开放跨域访问
    GTA项目 一, 包装外部WebService
    DNS域名解析
    CRM 迁移服务器备忘
    CentOS6.5 安装HAProxy 1.5.20
    Custom IFormatProvider
    数据分区考虑
  • 原文地址:https://www.cnblogs.com/plxx/p/4154588.html
Copyright © 2011-2022 走看看