I don't see any reason of not providing a secret URL that simply is not shown anywhere and then simply having for your admin pages the administrator required in your app.yaml, like this:
- url: /admin/.*
script: admin.app
login: admin
But if you really really want to not provide anything you can still do that. Don't forget that you are allowed to deploy up to 10 different versions for the same application on Google App Engine with unique URLs that can be accessed like this:
http://version-name.application-name.appspot.com
So you can create a totally different application to administrate your site and another application to present it. Deploy them both on the same app and having the right one as a default version.