by Anonymous » 12 Mar 2025, 13:21
Ich habe dieses
Problem auf PlayStore mit dem folgenden Fehler erhalten, als ich mein App -Update hochgeladen habe. < /p>
Code: Select all
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.
Ich habe keiner der com.google.android.play:Feature-Delivery Bibliotheken verwendet. Dann fand ich heraus, dass es sich um Subabhängigkeiten der com.paytm.nativesdk: CORE: 1.3.4 Bibliothek. Bibliotheken. So habe ich es gemacht und es hat funktioniert. < /P>
Code: Select all
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"
}
Ich habe dieses [url=viewtopic.php?t=15738]Problem[/url] auf PlayStore mit dem folgenden Fehler erhalten, als ich mein App -Update hochgeladen habe. < /p>
[code]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.
[/code]
Ich habe keiner der com.google.android.play:Feature-Delivery Bibliotheken verwendet. Dann fand ich heraus, dass es sich um Subabhängigkeiten der com.paytm.nativesdk: CORE: 1.3.4 Bibliothek. Bibliotheken. So habe ich es gemacht und es hat funktioniert. < /P>
[code]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"
}
[/code]