You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
Cross-platform version number retrieval (#2355)
* Add shim to retrieve application version. * Create shim to retrieve app version number. * Add a fall through handler to throw an error.
This commit is contained in:
@ -144,6 +144,11 @@ function shimInit() {
|
||||
return Platform.OS;
|
||||
};
|
||||
|
||||
shim.appVersion = () => {
|
||||
const p = require('react-native-version-info').default;
|
||||
return p.appVersion;
|
||||
};
|
||||
|
||||
// NOTE: This is a limited version of createResourceFromPath - unlike the Node version, it
|
||||
// only really works with images. It does not resize the image either.
|
||||
shim.createResourceFromPath = async function(filePath, defaultProps = null) {
|
||||
|
Reference in New Issue
Block a user