Tutorial: Application.getManifest

Application.getManifest

Retrieves the JSON manifest that was used to create the application. Invokes the error callback if the application was not created from a manifest.

Example

async function getManifest() {
    const app = await fin.Application.getCurrent();
    return await app.getManifest();
}

getManifest().then(manifest => console.log(manifest)).catch(err => console.log(err));