Closed necavit closed 5 years ago
The lintRelease
task is failing because the FrameLayout constructor we're using in a super call is unavailable before API 21. This change would fix it:
class SignInWithAppleButton @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0
) : FrameLayout(context, attrs, defStyleAttr) {
Oops! Ok, I'll add it tomorrow when I am back at the office :)
Thank you!
Closes #33