我必须在我的应用中集成Paypal,因此我获得了教程here和here。
在教程中,我发现下载Jar
并添加为library
。我无法在此链接中找到jar文件。它只有aar文件。
但在他们为android stdio所说的link中这样做:
将SDK添加到您的项目
PayPal Android SDK
现已在Maven Repository
处提供。最新版本可通过mavenCentral()
获得。只需从mavenCentral()
添加以下依赖项:
compile 'com.paypal.sdk:paypal-android-sdk:2.13.1'
所以我的build.gradle
文件如下:
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.paypal.sdk:paypal-android-sdk:2.13.1'
}
错误获取:
Error:A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugCompile'.
> Could not determine artifacts for com.paypal.sdk:paypal-android-sdk:2.13.1: No cached version available for offline mode
禁用OFFILNE MODE AND SYNC
后需要很长时间。尚未完成流程gradle sync
。
我无法在Android工作室中集成Paypal ... 有人告诉我我做错了什么以及如何整合? 谢谢。
答案 0 :(得分:0)
3.0.1.jar和okio-1.6.0.jar最新的jar文件
compile files('libs/okhttp-3.0.1.jar')
compile files('libs/okio-1.6.0.jar')
compile project(':PayPalAndroidSDK-2.13.1')
答案 1 :(得分:0)
将其添加到build.gradle(模块应用程序)
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.paypal.sdk:paypal-android-sdk:2.14.1'
}
并添加依赖项
{{1}}
希望它适合你