有人使用 Kinvey 作为后端服务吗?我按照以下步骤进行设置: http ://devcenter.kinvey.com/android/guides/getting-started
当我将 Kinvey 添加到我的 gradle 文件中的依赖项时,我收到一个语法错误,指出:无法解析:kinvey-android-*:
这是我的 build.gradle(Module:app) 文件:
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.markf.kinveytest"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}}
dependencies {
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile(name:'kinvey-android-*', ext:'aar')}
这是一个屏幕截图:
有人知道为什么吗?谢谢你。