@extscreen/es-core 2.3.25 → 2.3.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1764,7 +1764,10 @@ class ESLocationManager {
|
|
|
1764
1764
|
|
|
1765
1765
|
getLocation() {
|
|
1766
1766
|
return new Promise((resolve, reject) => {
|
|
1767
|
-
|
|
1767
|
+
const params = {
|
|
1768
|
+
packageName: 'es.extscreen.runtime.setting'
|
|
1769
|
+
};
|
|
1770
|
+
ESSharedDataManager$1.getSharedString(params, 'location', '')
|
|
1768
1771
|
.then((str) => {
|
|
1769
1772
|
try {
|
|
1770
1773
|
const location = JSON.parse(str);
|
|
@@ -4319,6 +4322,7 @@ class ES {
|
|
|
4319
4322
|
.then(() => ESNetworkManager$1.init())
|
|
4320
4323
|
.then(() => ESPluginManager$1.init())
|
|
4321
4324
|
.then(() => ESLaunchManager$1.init(configuration.router))
|
|
4325
|
+
.then(() => ESSharedDataManager$1.init())
|
|
4322
4326
|
.then(() => Promise.all([
|
|
4323
4327
|
ESUsbDeviceManager$1.init(),
|
|
4324
4328
|
ESStorageManager$1.init(),
|
|
@@ -4331,7 +4335,8 @@ class ES {
|
|
|
4331
4335
|
ESEventBus$1.init(),
|
|
4332
4336
|
ESBroadcastManager$1.init(),
|
|
4333
4337
|
ESLocalStorage$1.init(),
|
|
4334
|
-
AndroidVersions$1.init()
|
|
4338
|
+
AndroidVersions$1.init(),
|
|
4339
|
+
ESLocationManager$1.init()
|
|
4335
4340
|
]))
|
|
4336
4341
|
}
|
|
4337
4342
|
//
|