I need to include the .well-known/assetlinks.json file in my AppEngine Web App. It is mandatory to enable App Links for my Android application as described here https://developer.android.com/training/app-links/index.html
I added this line in the appengine-web.xml file
<static-files>
<include path=".well-known/assetlinks.json"/>
</static-files>
The problem is that it works in local
http://localhost:8384/.well-known/assetlinks.json
but not when I deploy the web app and it returns a 404 error.
http://www.example.com/.well-known/assetlinks.json
I suppose it could be a security restriction but I looked everywhere in the Google Cloud Platform Console and I didn't find anything about.
Someone have a solution to this problem? Thank you