Why my app can’t show the story content description?
This problem occurs because there are bugs in the latest update version of the default Android WebView System from Google, to solve the problem, please do the following instructions on below:
go to app/java/<package_name>/activities/ and find the files below :
1. ActivityStoryDetail.java
.loadData(text, mimeType, encoding);then, Replace All with the code on below (Ctrl + R) :
.loadDataWithBaseURL(null, text, mimeType, encoding, null);