Last active
March 23, 2017 04:52
-
-
Save maheshgiri/61b2c21442483a379a4117560dffe92a to your computer and use it in GitHub Desktop.
Android Studio Generating Signed APK Error Resolve
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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