Titanium模块imagefactory不起作用

Tib*_*lit 2 javascript module titanium appcelerator

几个小时后,仍然没有工作的图像模块,我希望在这里帮助som.

我正在尝试安装/使用imagefactory模块.1)我使用Titanium studio安装了它(从github和appcelerator都试过),但是当我在终端('Titanium模块')中查找模块时,或者在我尝试包含模块时在tiapp.xml中没有显示upp模块.

该插件会自行安装在目录中

Titanium/
    mobilesdk
    modules
    ti.imagefactory-stable <-- here
Run Code Online (Sandbox Code Playgroud)

我试图将文件夹移动到文件夹

Titanium/moduels/android/ti.imagefactory-stable
Run Code Online (Sandbox Code Playgroud)

Titanium/modules/ios/ti.imagefactory-stable
Run Code Online (Sandbox Code Playgroud)

然后它识别出模块,但后来我收到了这个错误:

Titanium Command-Line Interface, CLI version 3.4.1, Titanium SDK version 3.4.1.GA
Copyright (c) 2012-2014, Appcelerator, Inc.  All Rights Reserved.
Please report bugs to http://jira.appcelerator.org/
[INFO] :   Found Titanium module id=ti.imagefactory-stable version=ios platform=iphone     deploy-type=development path=/Users/username/Library/Application     Support/Titanium/modules/iphone/ti.imagefactory-stable/ios
[ERROR] :  Module ti.imagefactory-stable version 1.2.0 is missing library file: /Users/username/Library/Application Support/Titanium/modules/iphone/ti.imagefactory-stable/ios/libti.imagefactory-stable.a
Run Code Online (Sandbox Code Playgroud)

任何帮助都非常感谢,因为我现在被卡住了......我还尝试在本地安装到项目中但没有成功.

tur*_*tle 7

To install titanium modules and alloy widgets, now we have a package manager its gitTio.

gitTio can be installed via npm ( more info on installing ) using following command :

npm install -g gittio
Run Code Online (Sandbox Code Playgroud)

Now we can search various modules/widgets available at gitTio database, like the ti.imagefactory module is available here.

最后,您可以使用gittio install命令从项目的根目录安装模块.以下示例用法:

gittio install ti.imagefactory
Run Code Online (Sandbox Code Playgroud)