- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Android 新手,我想在我的应用中添加支付选项。所以,我使用了 instamojo。我在 gradle 文件中包含了 instamojo 库。但是 gradle 文件抛出错误。
错误:
Error:Failed to resolve: in.juspay:godel:0.6.11.0823
我的gradle文件:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:23.2.0'
compile 'de.hdodenhof:circleimageview:1.2.1'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:recyclerview-v7:23.2.0'
compile 'com.loopj.android:android-async-http:1.4.7'
compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
compile('com.googlecode.json-simple:json-simple:1.1.1') {
exclude group: 'org.hamcrest', module: 'hamcrest-core'
}
compile 'com.android.support:multidex:1.0.0'
compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
compile 'com.android.support:design:23.1.1'
compile 'com.google.gms:google-services:3.0.0'
compile 'com.google.android.gms:play-services-gcm:8.4.0'
compile 'com.google.android.gms:play-services-location:8.4.0'
compile 'com.instamojo:android-sdk:1.2.4'
}
如果我在单独的应用程序中运行 instamojo sdk 意味着工作完美。如果我与我的应用程序集成意味着超越 gradle 错误。
请大家帮忙解决
提前致谢。
最佳答案
Error:Failed to resolve: in.juspay:godel:0.6.11.0823
你应该有一个 allprojects
block ,其中包含像这样的一些行
// Add to build.gradle
repositories {
jcenter() // <-- should already be there
mavenCentral()
maven {
url "https://s3-ap-southeast-1.amazonaws.com/godel-release/godel/"
}
}
并且在app/build.gradle
dependencies {
// compile 'in.juspay:godel:0.6.12.0823' // maybe need this?
compile 'com.instamojo:android-sdk:1.2.4'
// your other dependencies
...
...
}
另外,这条线不需要存在。 编译 'com.google.gms:google-services:3.0.0'
It should be in the classpath
of the buildscript
dependencies
block.
并且 'com.android.support:design:23.1.1'
应该使用 23.2.0
来匹配其他 Android 支持版本。
关于“ list 合并失败”,你can search to find something similar ,并从删除这一行开始,因为它与其他依赖项是多余的。
compile 'com.android.support:support-v4:23.2.0'
关于android - 如何将 instamojo 集成到 android 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40603502/
我可以将 instamojo 支付网关 与 java 集成吗? 在他们的网站 ( https://www.instamojo.com/developers/ ) 中没有提及与 java 的集成。 如果
我在我的 iOS 应用程序中集成了 instamojo 支付网关。我目前正在使用带有 swift 4.0 的 Xcode 9.2。我已经通过 Cocoapods 安装了最新的 SDK。我还在我的服务器
我在 Codeigniter 中集成了 instamojo 支付网关。我想在 instamojo 支付网关中启用沙盒模式,我看不到任何将模式更改为沙盒或测试模式的选项。谁能告诉我如何更改它。 先感谢您
我是 Android 新手,我想在我的应用中添加支付选项。所以,我使用了 instamojo。我在 gradle 文件中包含了 instamojo 库。但是 gradle 文件抛出错误。 错误: Er
我从 API 得到了空值 https://sample-sdk-server.instamojo.com/status ?” + 从 instamojo 支付网关屏幕回调时来自此 url 的值 我在上
我已经使用 CodeIgniter 创建了一个项目,现在我想集成 instamojo 支付网关。但是当我尝试结帐时遇到以下问题。 页面正在加载 一段时间后,它给我以下错误。 "Error: Somet
我已经在 Xcode 8.2.1 和 swift 3 中集成了 instamojo。它工作正常,但是当我运行 Xcode 9 swift 3.2 时,它显示“无法在 Swift 3.0.2 中导入使用
如何在 iOS Objective C 中集成 instamojo 支付网关?可能没有直接的方法。那么通过WebView,如何在iOS中集成支付网关呢?已添加长 URL,但重定向链接中应放置什么内容以
有人知道如何在 Objective-C 中集成 instamojo 支付网关吗?我已经在 Webview 中打开了 Instamojo 支付屏幕,但如何处理支付成功并重定向到应用程序。 最佳答案 用于
当我尝试在本地计算机上的 codeigniter 中集成 instamojo php 支付网关时,我不断收到以下错误消息 "Error: Something went wrong. cURL rais
我是一名优秀的程序员,十分优秀!