Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maheshgiri/61b2c21442483a379a4117560dffe92a to your computer and use it in GitHub Desktop.
Save maheshgiri/61b2c21442483a379a4117560dffe92a to your computer and use it in GitHub Desktop.
Android Studio Generating Signed APK Error Resolve
add this in gradle
ValidFragment Error was beacause of fragment instance was not static in payumoney jar.
The below one only suppresses warning and we can build it.
android{
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
'OR'
You can solve this by creating one static instance of that fragment.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment