Where to find the application namespace [Android]

I need to find the application namespace , so I can fill in the value for the assetlinks.json file.

https://www.domain1.com/.well-known/assetlinks.json

[{
  "relation": ["delegate_permission/common.handle_all_urls"],
  "target": {
    "namespace": "android_app",
    "package_name": "com.mycompany.app1",
    "sha256_cert_fingerprints":
    ["14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5"]
  }
}]
+4
source share
1 answer

Tim, I was looking for this because Google docs never explained the namespace field in json. As it turns out, you leave the value android_app, this tells consumers that these settings are specifically for android_app. It should not indicate the specific namespace of your application or project (as I also suggested)

See https://firebase.google.com/docs/app-indexing/android/app

: android_app Android, URL-. , SHA-256 , , Play Store. . " ", .

+8

All Articles