gpt4 book ai didi

android - Travis CI Android - 找不到匹配的版本

转载 作者:太空宇宙 更新时间:2023-11-03 11:10:39 25 4
gpt4 key购买 nike

大家好,

我想在推送到 Github 后使用 Travis 测试我的 android 应用程序。

不幸的是,我有一个我几天都无法解决的问题:

Could not resolve all dependencies for configuration ':app:_defaultFlavorDebugCompile'.

> Could not find any version that matches com.google.android.gms:play-services:5.+.
Required by:
weightlifting_app_schwedt:app:unspecified

> Could not find any version that matches com.android.support:support-v4:20.+.
Required by:
weightlifting_app_schwedt:app:unspecified

我的build.gradle包括

dependencies {
compile 'com.google.android.gms:play-services:5.+'
compile 'com.android.support:support-v4:20.+'
}

这是我的 .travis.yml 文件

language: java
jdk: oraclejdk7
before_install:
- 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; fi
- wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz
- tar -xzf android-sdk_r21.0.1-linux.tgz
- export ANDROID_HOME=$PWD/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
- android list sdk --all
- chmod +x gradlew
- android update sdk --filter platform-tools,android-16,android-17,sysimg-17 --no-ui --force
- android update sdk --filter extra-android-support --no-ui --force > /dev/null
- android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null
- android update sdk --filter extra-google-m2repository --no-ui --force > /dev/null
- android update sdk --no-ui --all --filter 1,2

如您所见,我尝试包含额外的关联存储库,但它还不起作用......

也许你能看到我的错误,因为我没有想法......

非常感谢,祝您有愉快的一天!

最好的问候

最佳答案

更新回复:

VM 镜像已经包含固定的 android-wait-for-emulator 脚本和 android SDK 工具版本 24.0.0 以及您的构建默认需要的组件。

Build Environment Updates - 2014-12-09

旧回复:

在其他组件之前运行 update tools = 1,以便您获得最新的修订版并添加缺少的组件 extra-google-google_play_services 和您在项目中配置的构建工具修订版。

language: java
jdk: oraclejdk7
before_install:
- 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; fi
- wget http://dl.google.com/android/android-sdk_r23.0.2-linux.tgz
- tar -xzf android-sdk_r23.0.2-linux.tgz
- export ANDROID_HOME=$PWD/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
- android list sdk --all
- chmod +x gradlew
- android update sdk --no-ui --all --filter 1,2
- android update sdk --filter platform-tools,android-16,android-17,sysimg-17 --no-ui --force
- android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null
- android update sdk --filter extra-android-support --no-ui --force > /dev/null
- android update sdk --filter extra-google-m2repository --no-ui --force > /dev/null
- android update sdk --filter extra-google-google_play_services --no-ui --force > /dev/null

或自定义此示例

language: android

jdk:
# Check Travis JDKs: http://docs.travis-ci.com/user/languages/java/#Testing-Against-Multiple-JDKs
# If 'jdk:' section is not found, Travis-ci use one jdk by default. You can comment out 'jdk:' and
# test against more than one JDK: 'jdk' is combined with 'env' to construct a build matrix.
# - openjdk7
- oraclejdk7

android:
components:
# Check your project requirements and the components included by default on Travis-ci VM images.
# Check required: https://github.com/google/iosched/blob/master/doc/BUILDING.md
# Check defaults: http://docs.travis-ci.com/user/languages/android/#Pre-installed-components

# Check Android SDK tools: http://developer.android.com/tools/sdk/tools-notes.html
# Check Android SDK Platform-tools: http://developer.android.com/tools/revisions/platforms.html
# Comment the lines below if the latest revisions of Android SDK Tools are included by default.
- tools
- platform-tools

# Check BuildTools: http://developer.android.com/tools/revisions/build-tools.html
# Comment the lines below if the BuildTools required for building your project are included.
# - build-tools-20.0.0
# - build-tools-21.0.2
- build-tools-21.1.1

# Check APIs: http://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels
# Comment the lines below if the SDK versions used to compile your project are already included.
# - android-20
- android-21

# Check extras: http://developer.android.com/sdk/installing/adding-packages.html#GetSupportLib
# Comment the lines below if the latest Android extras are included or not required.
- extra-android-m2repository
- extra-android-support

# Check more extras: http://developer.android.com/sdk/installing/adding-packages.html#GetGoogle
# Comment the lines below if the latest Google extras are included or not required.
- extra-google-m2repository
- extra-google-google_play_services

# Check possible addons, you can use the commandline: android list sdk --no-ui --all --extended
# Comment the lines below if the latest Google apis addons are included or not required.
# - addon-google_apis-google-21

# Check get tools: http://developer.android.com/sdk/installing/adding-packages.html#GetTools
# Comment the lines below if the latest images are included or you don't need to run emulator/s.
# - sys-img-x86-android-21
# - sys-img-x86_64-android-21
# - sys-img-armeabi-v7a-addon-google_apis-google-21
- sys-img-armeabi-v7a-android-21
# - sys-img-armeabi-v7a-android-wear-20

licenses:
# Check licenses: http://docs.travis-ci.com/user/languages/android/#Dealing-with-Licenses
# By default Travis will accept all the licenses, but it's also possible to define a white list:
# White list current android-sdk-license revision.
- 'android-sdk-license-5be876d5'
# White list all android-sdk-license revisions.
# - 'android-sdk-license-.+'
# White list all the licenses.
# - '.+'

关于android - Travis CI Android - 找不到匹配的版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25644996/

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