Skip to content

Commit 03efa8a

Browse files
FatmeFatme
Fatme
authored and
Fatme
committed
Merge pull request #808 from NativeScript/fatme/release-1.2.4
Release 1.2.4
2 parents ab782c3 + e443fc4 commit 03efa8a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

lib/services/android-project-service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ class AndroidProjectService extends projectServiceBaseLib.PlatformProjectService
248248
let libProjProp = path.join(libraryPath, "project.properties");
249249
if (this.$fs.exists(libProjProp).wait()) {
250250
this.updateProjectReferences(this.platformData.projectRoot, targetLibPath).wait();
251+
this.runAndroidUpdate(targetLibPath, this.getTarget(this.platformData.projectRoot).wait()).wait();
251252
}
252253
}).future<void>()();
253254
}

lib/services/plugins-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export class PluginsService implements IPluginsService {
184184
let pluginData: any = {};
185185
pluginData.name = cacheData.name;
186186
pluginData.version = cacheData.version;
187-
pluginData.fullPath = path.dirname(this.getPackageJsonFilePathForModule(cacheData.name));
187+
pluginData.fullPath = cacheData.directory || path.dirname(this.getPackageJsonFilePathForModule(cacheData.name));
188188
pluginData.isPlugin = !!cacheData.nativescript;
189189
pluginData.pluginPlatformsFolderPath = (platform: string) => path.join(pluginData.fullPath, "platforms", platform);
190190

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nativescript",
33
"preferGlobal": true,
4-
"version": "1.2.3",
4+
"version": "1.2.4",
55
"author": "Telerik <support@telerik.com>",
66
"description": "Command-line interface for building NativeScript projects",
77
"bin": {

0 commit comments

Comments
 (0)