2016-08-20 1 views
1

존재하지 않습니다이 SDK 디렉토리 내가이 .travis.yml 파일을 가지고,하지만 난 계속이 오류를 얻고있다 트래비스 CI

* What went wrong: 
A problem occurred configuring project ':app'. 
> The SDK directory '/home/travis/build/Me/MyProject/C:\Users\Me\AppData\Local\Android\Sdk' does not exist. 


내 .travis.yml

language: android 
before_install: 
- chmod +x gradlew 
script: 
- ./gradlew clean assembleDebug 
install: 
- true 
- chmod +x ./gradlew; ls -l gradlew; ./gradlew wrapper -v 
android: 

components: 
# Uncomment the lines below if you want to 
# use the latest revision of Android SDK Tools 
# - platform-tools 
# - tools 

# The BuildTools version used by your project 
- build-tools-23.0.3 

# The SDK version used to compile your project 
- android-23 

# Additional components 
- extra-google-google_play_services 
- extra-google-m2repository 
- extra-android-m2repository 
- addon-google_apis-google-23 

# Specify at least one system image, 
# if you need to run emulator(s) during your tests 
- sys-img-armeabi-v7a-android-23 
- sys-img-x86-android-17 

Google에서 아무 것도 찾을 수 없으므로 수정 방법을 모르겠습니다.

답변

4

local.properties 파일을 저장소에 저장하지 마십시오.

+1

감사합니다 !!!!! – Jason

관련 문제