Reputation: 47
when working in Eclipse on my app, it shows me in AndroidManifest.XML this at the very beginning:
"No grammar constraints (DTD or XML Schema) referenced in the
document."
Existing threads only refer to "detected", instead of "referenced". Is there a difference? What's the whole point of this?
Upvotes: 0
Views: 9779
Reputation: 14390
Start your XML with :
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE RelativeLayout>
Upvotes: 7