willowtreeapps / sign-in-with-apple-button-android

An Android library for Sign In with Apple
MIT License
283 stars 68 forks source link

Add prefixs for lib resources. #25

Closed evant closed 5 years ago

evant commented 5 years ago

Unfortunately android resources are in a global namespace, you should prefix all your resources to prevent clashes with app code (ex: appleButton_white.xml). There's a gradle option resourcePrefix to help enforce this.

android {
    resourcePrefix 'appleButton_'
}