Created
November 10, 2019 02:44
-
-
Save takahirohonda/a869c7fe05554168a87b4562945bfd0c to your computer and use it in GitHub Desktop.
releasing-multiple-pwas-to-googleplay-by-using-a-single-github-page-root-1.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- For the first app --> | |
<resources> | |
<string name="app_name">My First App</string> | |
<string name="asset_statements"> | |
[{ | |
\"relation\": [\"delegate_permission/common.handle_all_urls\"], | |
\"target\": { | |
\"namespace\": \"web\", | |
\"site\": \"https://mygithubusername.github.io\"} | |
}] | |
</string> | |
</resources> | |
<!-- For the second app --> | |
<string name="app_name">My Second App</string> | |
<string name="asset_statements"> | |
[{ | |
\"relation\": [\"delegate_permission/common.handle_all_urls\"], | |
\"target\": { | |
\"namespace\": \"web\", | |
\"site\": \"https://mygithubusername.github.io\"} | |
}] | |
</string> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment