Last active
October 30, 2020 12:56
-
-
Save Natgho/a148826fe0d7fb28a846ad60c2578122 to your computer and use it in GitHub Desktop.
Quick App with Location Kit Manifest.json
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
{ | |
"package": "com.sezerbozkir.quickappwithlocationkit", | |
"name": "QuickAppwithLocationKit", | |
"versionName": "1.0.0", | |
"versionCode": 1, | |
"icon": "/Common/logo.png", | |
"minPlatformVersion": 1075, | |
"features": [ | |
{ | |
"name": "system.geolocation" | |
}, | |
{ | |
"name": "system.prompt" | |
} | |
], | |
"permissions": [ | |
{ | |
"origin": "*" | |
} | |
], | |
"config": {}, | |
"router": { | |
"entry": "Location", | |
"pages": { | |
"Location": { | |
"component": "location" | |
} | |
} | |
}, | |
"display": { | |
"pages": { | |
"Location": { | |
"titleBarText": "TitleBar" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment