Android Personal Dictionary App Issues
I am trying to write a personal dictionary application on android platform. There are standard features like add,edit,delete. I will be creating a personal application database to
Solution 1:
Try adding this to your app's AndroidManifest.xml file outside of the <application>
element:
<uses-permissionandroid:name="android.permission.WRITE_USER_DICTIONARY"></uses-permission>
This solution worked at a similar problem, found here: Add Words to Android's UserDictionary
Post a Comment for "Android Personal Dictionary App Issues"