Duplicate Record IInAppBillingService

I recently implemented application billing for my Android app https://developer.android.com/google/play/billing/billing_integrate.html#billing-service

Then I implemented "stickerpipe" and then got this error Error:Execution failed for task :app:transformClassesWithJarMergingForRelease.> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/android/vending/billing/IInAppBillingService$Stub$Proxy.class

Should I remove IInAppBillingService.aidl the one I added manually?

I tried this exclude group: 'com.android.vending.billing', but no change.

Can someone help me?

+4
source share
1 answer

: : app: transformClassesWithJarMergingForRelease. > com.android.build.api.transform.TransformException: java.util.zip.ZipException: : com/android/vending/billing/IInAppBillingService $Stub $Proxy.class

- IInAppBillingService, . , , .

Hint:  if you added this File manually and added in gradle dependencies also  like in my case.
than try to remove this from one place.

, .

0

Source: https://habr.com/ru/post/1678357/


All Articles