Todd-Davies / ProgressWheel

A progress wheel for android, intended for use instead of the standard progress bar.
MIT License
2.64k stars 710 forks source link

Attribute "radius" has already been defined #53

Open rocxteady opened 9 years ago

rocxteady commented 9 years ago

Hello. When I build gradle, it keeps showing me this error: "Attribute "radius" has already been defined". After a little research I discovered ViewPagerIndicator library also uses "radius" attribute. They conflict.

So how can I successfully build both of them?

lichenyang1993 commented 8 years ago

I just copy the source code into my project and remove the dependencies in the build.gradle.Then it works.

jamesgoodwin commented 8 years ago

Recommend to add a prefix to all resources to prevent this issue. Android Studio can give warnings if its configured in the build.gradle file:

android {
  resourcePrefix 'mylib_'
}