You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem with SDK in release. In debug the application builds fine. The release build crashes during obfuscation by R8.
I think it is cased by missing Huawei SDK that I haven't added because I don't use Huawei id as visitor ID. Is it really optional or I need to add it even though I don't use it?
Missing class com.huawei.hms.ads.identifier.AdvertisingIdClient$Info (referenced from: io.piano.android.analytics.idproviders.AdvertisingIdInfo io.piano.android.analytics.idproviders.HuaweiAdvertisingIDIdProvider.loadAdvertisingInfo$piano_analytics_release())
Missing class com.huawei.hms.ads.identifier.AdvertisingIdClient (referenced from: io.piano.android.analytics.idproviders.AdvertisingIdInfo io.piano.android.analytics.idproviders.HuaweiAdvertisingIDIdProvider.loadAdvertisingInfo$piano_analytics_release())
I have minimal setup
val configuration =Configuration.Builder(
collectDomain = pianoConfiguration.domain,
site = pianoConfiguration.siteId.toInt(),
).build()
PianoAnalytics.init(application.applicationContext, configuration)
The text was updated successfully, but these errors were encountered:
Hi @OndraBasler,
you can add -dontwarn com.huawei.hms.ads.** into your proguard rules to fix it. I'll add it into SDK consumer rules in the next release
I have a problem with SDK in release. In debug the application builds fine. The release build crashes during obfuscation by R8.
I think it is cased by missing Huawei SDK that I haven't added because I don't use Huawei id as visitor ID. Is it really optional or I need to add it even though I don't use it?
Missing class com.huawei.hms.ads.identifier.AdvertisingIdClient$Info (referenced from: io.piano.android.analytics.idproviders.AdvertisingIdInfo io.piano.android.analytics.idproviders.HuaweiAdvertisingIDIdProvider.loadAdvertisingInfo$piano_analytics_release())
Missing class com.huawei.hms.ads.identifier.AdvertisingIdClient (referenced from: io.piano.android.analytics.idproviders.AdvertisingIdInfo io.piano.android.analytics.idproviders.HuaweiAdvertisingIDIdProvider.loadAdvertisingInfo$piano_analytics_release())
I have minimal setup
The text was updated successfully, but these errors were encountered: