admin管理员组文章数量:1391925
I got this issue on playstore with the following error when I uploaded my app update.
Your bundle targets SDK 34, but uses Play Core libraries that cannot be used with that version. Your current com.google.android.play:feature-delivery-ktx:2.0.1, com.google.android.play:feature-delivery:2.0.1 libraries are incompatible with targetSdkVersion 34 (Android 14), which introduces a backwards-incompatible change to broadcast receivers and may cause app crashes.
I never used either of the com.google.android.play:feature-delivery
libraries. Then I found out that they are sub dependencies of the com.paytm.nativesdk:core:1.3.4
library.
I found that the latest version of this Paytm library is 1.4.1
but even after added all the repos it doesn't seem to detect this version.
So the solution I found that works was to exclude the google play feature delivery libraries from the paytm libraries. This is how I did it and it worked.
implementation("com.paytm.nativesdk:core:1.4.1") {
exclude group: "com.google.android.play", module: "feature-delivery"
exclude group: "com.google.android.play", module: "feature-delivery-ktx"
}
I got this issue on playstore with the following error when I uploaded my app update.
Your bundle targets SDK 34, but uses Play Core libraries that cannot be used with that version. Your current com.google.android.play:feature-delivery-ktx:2.0.1, com.google.android.play:feature-delivery:2.0.1 libraries are incompatible with targetSdkVersion 34 (Android 14), which introduces a backwards-incompatible change to broadcast receivers and may cause app crashes.
I never used either of the com.google.android.play:feature-delivery
libraries. Then I found out that they are sub dependencies of the com.paytm.nativesdk:core:1.3.4
library.
I found that the latest version of this Paytm library is 1.4.1
but even after added all the repos it doesn't seem to detect this version.
So the solution I found that works was to exclude the google play feature delivery libraries from the paytm libraries. This is how I did it and it worked.
implementation("com.paytm.nativesdk:core:1.4.1") {
exclude group: "com.google.android.play", module: "feature-delivery"
exclude group: "com.google.android.play", module: "feature-delivery-ktx"
}
Share
Improve this question
edited Mar 12 at 12:21
Devenom
asked Mar 12 at 11:45
DevenomDevenom
9751 gold badge13 silver badges21 bronze badges
1 Answer
Reset to default 0I got this issue on playstore with the following error when I uploaded my app update.
Your bundle targets SDK 34, but uses Play Core libraries that cannot be used with that version. Your current com.google.android.play:feature-delivery-ktx:2.0.1, com.google.android.play:feature-delivery:2.0.1 libraries are incompatible with targetSdkVersion 34 (Android 14), which introduces a backwards-incompatible change to broadcast receivers and may cause app crashes.
I never used either of the `com.google.android.play:feature-delivery` libraries. Then I found out that they are sub dependencies of the `com.paytm.nativesdk:core:1.3.4` library.
I found that the latest version of this Paytm library is `1.4.1` but even after added all the repos it doesn't seem to detect this version.
So the solution I found that works was to exclude the google play feature delivery libraries from the paytm libraries. This is how I did it and it worked.
implementation("com.paytm.nativesdk:core:1.4.1") { exclude group: "com.google.android.play", module: "feature-delivery" exclude group: "com.google.android.play", module: "feature-delivery-ktx" }
本文标签:
版权声明:本文标题:dependencies - Android App Release issue with Play Core libraries om.google.android.play:feature-delivery Paytm - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744754962a2623405.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论