我只想将SMSSDK放在我的模块的build.gradle文件中。但是,在将它添加到文件后然后当我尝试同步时它给我一个错误,我不知道如何纠正这个错误。我希望有人能告诉我这个错误是什么。我正在使用android studio 3.0.0
以下代码是我在模块build.gradle中添加的
repositories{
flatDir{
dirs 'libs'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
implementation 'com.squareup.okhttp3:okhttp:3.8.1'
implementation name:'SMSSDK-3.0.0',ext:'arr'
implementation name:'SMSSDKGUI-3.0.0',ext:'arr'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
答案 0 :(得分:1)
您的构建脚本中只有一个拼写错误。您告诉它使用arr
文件,而这些文件是aar
。