我正在使用Android Studio 1.5.1,我正在使用一些Paint.Net图像(.pdn)以及一些.pptx格式的图标。 我看到了solution。
classpath 'com.android.tools.build:gradle:1.2.2' in gradle.properties
但是在应用它时,我得到以下错误:
Error:Unknown host 'jcenter.bintray.com'. You may need to adjust the proxy settings in Gradle.
<a href="toggle.offline.mode">Enable Gradle 'offline mode' and sync project</a><br><a href="https://docs.gradle.org/current/userguide/userguide_single.html#sec:accessing_the_web_via_a_proxy">Learn about configuring HTTP proxies in Gradle</a>
我在gradle.properties
中添加了以下代理配置systemProp.http.proxyHost=proxy.host.com
systemProp.http.proxyPort=portnum
systemProp.http.proxyUser=userId
systemProp.http.proxyPassword=passWord
systemProp.http.auth.ntlm.domain=*.nonproxyrepos.com|localhost
systemProp.https.proxyHost=proxy.host.com
systemProp.https.proxyPort=portNum
systemProp.https.proxyUser=userId
systemProp.https.proxyPassword=passwoRd
systemProp.https.nonProxyHosts=*.nonproxyrepos.com|localhost
但后来我收到了这个错误:
Error:Cause: peer not authenticated
然后我读了这个post,其中说Gradle版本必须在build.gradle中正确。
classpath 'com.android.tools.build:gradle:1.2.2'
现在我死了! Android不支持.pdn或.pptx在drawable中吗?
答案 0 :(得分:0)
Android Studio 1.5.1是否无法支持.pdn或.pptx中的drawable?
Android Studio不支持.pdn
或.pptx
作为可绘制资源。
答案 1 :(得分:0)
Android仅接受.png,.jpg,.gif和.xml文件作为可绘制资源。有关详细信息,请查看here