2017-05-09 14 views
1

のために、私は私のプロジェクトのいずれかのCIを実装しようとしていますと、トラビスは、それが次のエラーで終わる走るたび:私はthis questionthis exampleおよびいくつかの他を経て、私いるトラヴィスは、Androidのライセンスの問題

FAILURE: Build failed with an exception. 
* What went wrong: 
A problem occurred configuring project ':app'. 
> You have not accepted the license agreements of the following SDK components: 
    [Android SDK Build-Tools 25.0.1, Android SDK Platform 25]. 
    Before building your project, you need to accept the license agreements and complete the installation of the missing components using the Android Studio SDK Manager. 
    Alternatively, to learn how to transfer the license agreements from one workstation to another, go to http://d.android.com/r/studio-ui/export-licenses.html 
* Try: 
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. 
BUILD FAILED 

私が間違っていることを理解できません。

language: android 
jdk: 
    - oraclejdk8 
sudo: true 
before_install: 
- chmod +x gradlew 
env: 
    global: 
    - ANDROID_API_LEVEL=23 
    - EMULATOR_API_LEVEL=21 
    - ANDROID_BUILD_TOOLS_VERSION=23.0.1 
    - ANDROID_ABI=armeabi-v7a 
    - ANDROID_TAG=google_apis 
    - ADB_INSTALL_TIMEOUT=8 # minutes (2 minutes by default) 
android: 
    components: 
    - tools 
    - tools 
    - platform-tools 
    - build-tools-$ANDROID_BUILD_TOOLS_VERSION 
    - android-$ANDROID_API_LEVEL 
    - android-$EMULATOR_API_LEVEL 
    - extra 
    - add-on 
    - extra-google-m2repository 
    - extra-android-m2repository 

    # Google Play Services 
    - extra-google-google_play_services 
    # Support library 
    - extra-android-support 

    - addon-google_apis-google-$ANDROID_API_LEVEL 
    - addon-google_apis-google-$EMULATOR_API_LEVEL 

    - sys-img-armeabi-v7a-google_apis-$ANDROID_API_LEVEL 
    - sys-img-armeabi-v7a-google_apis-$EMULATOR_API_LEVEL 

    licenses: 
    - 'android-sdk-preview-license-.+' 
    - 'android-sdk-license-.+' 
    - 'intel-android-extra-license.+' 

before_script: 
    - echo no | android create avd --force -n test -t "android-23" --abi $ANDROID_ABI --tag $ANDROID_TAG 
    - emulator -avd test -no-window & 
    - android-wait-for-emulator 
    - adb shell input keyevent 82 & 

誰でもプロジェクトの詳細情報が必要な場合はgithub pageをご覧ください。

答えて

1

OK、私のグーグル・グーグルをより効率的にするためのコーヒーが問題を解決しました。この問題はhereで詳しく説明されています。私は自分のコードに次の行を追加しなければなりませんでした(まだ25何が必要なのか分かりませんが、少なくとも動作します)。

- build-tools-25.0.1 
- android-25 
+0

ありがとう! Android SDK 26のターゲティングとビルドツール26.0.1の使用にも同じロジックが適用されます。私はその不足しているライセンスを受け入れるために多くのことを試しましたが、理由はわかりませんが、これらのコンポーネントを追加すると、許諾されていないライセンスの問題が解決されます。 –

関連する問題