我只是一名互联网和笔记本电脑非常慢的学生。我的问题是大多数添加凌空到我的android工作室项目的方法要求我使用gradle在线模式,以便它可以下载它。
我的问题是我的网络连接非常慢,而且我的笔记本电脑也不是那么快,因此gradle离线模式是我每次使用Android工作室时唯一让我的笔记本电脑死机的事情。
是否有任何手动方式可以为我的项目或您可能知道的任何替代方案添加排球?
请帮助我,我只是一名学生,所以我不太了解。
答案 0 :(得分:1)
您可以使用此排球库
编译'com.mcxiaoke.volley:library-aar:1.1.0'
答案 1 :(得分:0)
从这里下载Volley Jar文件https://drive.google.com/file/d/0B2HGUM4c0YwpZFp2aUlnNjJvV2c/view
在Android Studio中添加Jar文件的步骤:
添加后在应用模块中检查build.gradle,您会将其添加到implementation files('libs/volley.jar')
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:appcompat-v7:26.+'
testCompile 'junit:junit:4.12'
implementation files('libs/volley.jar')
}