我是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错误。
请有人帮忙解决。
提前致谢。
答案 0 :(得分:2)
错误:无法解决:in.juspay:godel:0.6.11.0823
你应该有一个allprojects
块,其中包含一些像这样的行
// 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
...
...
}
此外,这条线不需要在那里。 compile '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支持版本。
关于&#34; Manifest合并失败&#34;,您can search to find something similar,并开始删除此行,因为它与其他依赖项是多余的。
compile 'com.android.support:support-v4:23.2.0'
答案 1 :(得分:1)
//添加到build.gradle
repositories {
jcenter() // <-- should already be there
mavenCentral()
maven {
url "https://s3-ap-southeast-1.amazonaws.com/godel-release/godel/"
}
}
然后将其添加到清单文件中
<meta-data android:name="instamojo.orderauth.url"
android:value="ur website name/access_token.php"
/>