0
repositories { 
    maven { url "https://jitpack.io" } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:23.1.1' 
    compile 'com.github.PhilJay:MPAndroidChart:v2.2.2' 
} 

Gradle을 설정을 변경하면 오프라인 동안, 나는 라이브러리를 열 수 없습니다 반면 나는 온라인 모드에서 Error:Connection timed out: connect을 얻고있다가.연결은 온라인 모드에서 오류가 시간 초과 및 오프라인 모드에서 파일을 열 수 없었다 - 안드로이드 스튜디오

+0

프록시 문제가 있습니까? 브라우저에서 https://jitpack.io를 열 수 있습니까? – ThomasEdwin

답변

0

아마도 인터넷 연결이 너무 느립니다. github에서이 라이브러리를 다운로드하고 프로젝트에 가져올 수 있습니다. 다음, 다운로드 ZIP 및 다운로드 후를 선택 복사 폴더 MPChartLibgradle와 프로젝트 루트 디렉토리 및 compile에 붙여 https://github.com/PhilJay/MPAndroidChart

그냥 다운로드 버튼 클릭 : 여기

github 저장소 링크입니다 . 당신의 settings.gradle에서

, include ':app', ':MDChartLib'build.gradle(Module:app), compile project(':MDChartLib')

0

에 "인터넷"을 연결하고 다시 동기화 확인하시기 바랍니다.

+0

항상 연결되어 있습니다. – Sriram