android - gradle dependency can't be resolved -
i included dependencies android app. works on own computer. if try build on company computer cause error coulnd't resolve dependency. assume due proxy server. tried configure gradle adding gradle.properties:
systemprop.proxyset=true systemprop.http.proxyhost=[proxy] systemprop.http.proxyport=[port] systemprop.http.proxyuser=[username] systemprop.http.proxypassword=[password] systemprop.http.nonproxyhosts=localhost systemprop.http.auth.ntlm.domain=domain systemprop.https.proxyhost=[proxy] systemprop.https.proxyport=[port] systemprop.https.proxyuser=[username] systemprop.https.proxypassword=[password] systemprop.https.nonproxyhosts=localhost systemprop.https.auth.ntlm.domain=domain
this works except com.afollestad:material-dialogs:0.7.5.1. if remove dependency builds works , other dependency fetched.
the developer states on github page shall add repo if having issues: maven { url 'https://dl.bintray.com/drummer-aidan/maven' }
so have repositories added:
repositories { jcenter() maven { url 'https://dl.bintray.com/drummer-aidan/maven' } mavenlocal() }
but still gets same error.
i assume gradle tries package via https , having problems it. have idea missconfigured , how can fix this?
thanks npadrutt
Comments
Post a Comment