JustZak / DilatingDotsProgressBar

A customizable indeterminate progress bar
MIT License
627 stars 111 forks source link

Proguard #8

Open roudikk opened 7 years ago

roudikk commented 7 years ago

Hello, it is working on a signed minifyEnabled true apk, however the dots are not dilating.

I tried : -keep class com.github.justzak.dilatingdotsprogressbar.*{ ; } in proguardrules

dharmita1990 commented 7 years ago

I included it's different java classes and for proguard enabled ,i wrote -keep class packagename.DilatingDotDrawable { *; } and its working.

rahulchowdhury commented 7 years ago

As @dharmita1990 suggested, adding the following line did the job,

-keep class com.zl.reik.dilatingdotsprogressbar.DilatingDotDrawable { *; }

jp1017 commented 7 years ago

-keep class com.zl.reik.dilatingdotsprogressbar.DilatingDotDrawable { *; }

This worked for me. :smile: :+1: Thanks. @rahulchowdhury