我一直在实现GOOGLE CONTACT API v3(下面是链接)(https://developers.google.com/contacts/v3/)
我已按照文档进行操作,并将所有受支持的必需库添加到我的应用中,并且所有依赖项错误均已从我的代码中消失
但是当我尝试运行/构建时,它显示了此错误
程序类型已存在:com.google.gdata.client.Query $ CategoryFilter 消息{种类=错误,文本=程序类型已存在:com.google.gdata.client.Query $ CategoryFilter,来源= [未知源文件],工具名称= Optional.of(D8)}
我尝试了Google搜索,但没有找到确切的错误解决方案,但我注意到,针对此类问题的大多数解决方法是升级/降级构建版本
所以,我是在api 28上构建的,因此我降级到27.1.1,但存在相同的错误
这是我的build.gradle的外观
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.murtaza.contactsync"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation files('libs/gdata-core-1.0.jar')
implementation files('libs/gdata-client-1.0.jar')
implementation files('libs/gdata-contacts-3.0.jar')
implementation files('libs/guava-11.0.2.jar')
}
这都是导入
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.google.gdata.client.*;
import com.google.gdata.client.contacts.*;
import com.google.gdata.data.*;
import com.google.gdata.data.contacts.*;
import com.google.gdata.data.extensions.*;
import com.google.gdata.util.*;
import java.io.IOException;
import java.net.URL;
请指导我我在哪里做错了什么或如何解决此问题,以便我可以实施google contact api v3
我为此使用了确切的文档代码
请在这里帮助我
答案 0 :(得分:1)
Google Contact API已过时,因此我浪费时间使用Poeple 可替换为Contact API的API,其工作原理像一个魅力
Google People API链接: https://developers.google.com/people
People API教程链接: https://blog.iamsuleiman.com/people-api-android-tutorial-1/
示例代码Github链接: https://github.com/simformsolutions/Google-People-API-Sample