gpt4 book ai didi

Android 构建错误 : unknown package filter

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:05:31 27 4
gpt4 key购买 nike

更新:可能有兴趣的是我也遇到了类似的错误:
“错误:忽略未知包过滤器‘extra-android-m2repository’” 在这一行:

android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null  

但我通过将 sdk 工具更新为 rev 解决了这个问题。 23. 原来的错误仍然存​​在。


我有一个在 travis.ci 持续集成上运行的 Android 构建作业。它曾经工作正常,但最近它开始抛出错误:
“错误:忽略未知包过滤器‘sysimg-19’”

在这一行:

echo yes | android update sdk --all --filter sysimg-19 --no-ui --force > /dev/null

然后导致 android create avd 命令失败:
“有效的 ABI:没有 ABI。错误:所选目标的 --abi armeabi-v7a 无效。”

我也尝试过不使用 --all 标志,但结果相同。
我想原因可能是我不知道的 Android SDK 中的一些变化。有没有人暗示可能是什么问题?

请参阅下面我的完整 travis.yml。

特拉维斯.yml:

language: java

jdk:
- oraclejdk7

android:
components:
- build-tools-19.1.0

env:
matrix:
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a

before_install:
# Install base Android SDK
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch > /dev/null; fi
- wget http://dl.google.com/android/android-sdk_r22.6.2-linux.tgz
- tar xzf android-sdk_r22.6.2-linux.tgz
- export ANDROID_HOME=$PWD/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools

# install android build tools
- wget https://dl-ssl.google.com/android/repository/build-tools_r19.1-linux.zip
- unzip build-tools_r19.1-linux.zip -d $ANDROID_HOME
- mkdir -p $ANDROID_HOME/build-tools/
- mv $ANDROID_HOME/android-4.4.2 $ANDROID_HOME/build-tools/19.1

# Install required components.
# For a full list, run `android list sdk -a --extended`
# Note that sysimg-19 downloads only ARM, because only the first license query is accepted.
- android list sdk -u --all --extended
- echo yes | android update sdk --all --filter platform-tools --no-ui --force > /dev/null
- echo yes | android update sdk --all --filter build-tools-19.1.0 --no-ui --force > /dev/null
- echo yes | android update sdk --all --filter android-19 --no-ui --force > /dev/null
- echo yes | android update sdk --all --filter sysimg-19 --no-ui --force > /dev/null
- echo yes | android update sdk --filter extra-android-support --no-ui --force > /dev/null
- echo yes | android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null

# Create and start emulator
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &

- chmod +x gradlew

before_script:
- adb wait-for-device
- adb shell input keyevent 82 &

script:
- TERM=dumb ./gradlew -s connectedCheck

最佳答案

我自己找到了解决办法:由于重命名了 Android SDK 中的系统图像,该行

- echo yes | android update sdk --all --filter sysimg-19 --no-ui --force > /dev/null

应该是:

- echo yes | android update sdk --all --filter sys-img-armeabi-v7a-android-19 --no-ui --force > /dev/null

当我将 sdk 工具更新到修订版 23 时,解决了 extra-android-m2repository 的另一个问题:

- wget http://dl.google.com/android/android-sdk_r23-linux.tgz
- tar xzf android-sdk_r23-linux.tgz

关于Android 构建错误 : unknown package filter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24511985/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com