Ausgabe von Android App Release mit Kernbibliotheken OM.google.android.play:Feature-Delivery Paytm

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Ausgabe von Android App Release mit Kernbibliotheken OM.google.android.play:Feature-Delivery Paytm

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"
}

Top