Reputation: 1
Long story short, An app I have keeps getting an error saying
Error registering: Unable to resolve host "storywriters.dataone.com.au" :No address associated with hostname"
It was working fine but I had a problem that led me to uninstall and install it again and then this problem came, Any help? Sorry, if I'm being vague, I'm awful at this.
I've seen other answers, talking about the manifest but I'd like an answer on how to access it on either android or computer.
Upvotes: 0
Views: 4980
Reputation: 11214
This is not a programming question. You are talking about an app you have. This site is for apps you develop yourself as a programmer. Go to stackexchange instead.
Upvotes: 1
Reputation: 3359
I think you have not provided the INTERNET permission. Try adding this to your AndroidManifest.xml file, right before :
<uses-permission android:name="android.permission.INTERNET" />
Upvotes: 0