We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
For me this fixed the issue with crashing when going to next activity
class FSignaturePad(context: Context, attrs: AttributeSet) : SignaturePad(context, attrs) { override fun onSaveInstanceState(): Parcelable? { super.onSaveInstanceState() return null } override fun onRestoreInstanceState(state: Parcelable?) { super.onRestoreInstanceState(state) } }
Sorry, something went wrong.
Duplicate of #153
We just created a fork and published with the fix keeping the state saving. For use it you should:
Set jitpack.io url on your project's build.gradle
allprojects { repositories { google() maven { url "https://jitpack.io" } } }
and then, add into your depedencies this:
implementation 'com.github.prologapp:android-signaturepad:1.0.0'
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: