我想我已经下载了正确的.jar文件,但我似乎无法访问com.google.gdata.data.youtube来获取VideoEntry。有人可以指示我这个.jar文件的位置。
这是我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.xxx.xxx.xxx"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.1'
compile files('libs/YouTubeAndroidPlayerApi.jar')
compile 'com.google.api-client:google-api-client:1.19.1'
compile files('libs/gdata-client-1.0.jar')
compile files('libs/google-api-client-1.21.0.jar')
compile files('libs/google-api-client-android-1.21.0.jar')
}
我一直在网上搜索这个.jar文件而无法找到它。