Firebreath plugin not generating the package file after the compilation on Mac - firebreath

I created a plugin with Firebreath on Mac and after the code compilation it not generating the package(.pkg).
In windows using Wix tool kits, it generates the windows .msi but not with Mac OS.
I am using Xcode 4.6.2 and package maker installed in the Mac OSX version 10.7.5.

There is no built-in .pkg installer in FireBreath

Related

How to install xcode 7 and edit Swift 2.X on macOS Mojave version 10.14.3

In Case,
My project is using swift 2.X .
Once i installed Xcode 10. Xcode 10 is not available to code swift 2.X.
So i have to installed oldest version,
i go installed Xcode version 7.X , but not available to run on OS with the following problem message.
Xcode cannot be opened because of a problem.
Check with the developer to make sure Xcode works with this version of
macOS. You may need to reinstall the application.Be sure to install any
available updates for the application and macOS.
Any Solution to solve my problem??

ejabberd how to compile on windows

Ejabberd has a windows installer but the source does not compile for windows out of the box.
configure.bat has references to configure.erl but this file doesn't exist.
How do they do it?
From what I know, the windows installer is cross-compiled, or some weird stuff, and also requires specific program to pack the installer. So, building a Windows installer is not possible.
But you can download the ejabberd source code, make any changes you want to the erlang source code, compile it with the same Erlang/OTP version that is included in the Windows installer, and copy the *.beam files you have modified into the ejabberd installed directory.

Chat application using socket.io in windows phone 8.1

"Could not install package 'SocketIO4Net.Client 0.6.26'. You are trying to install this package into a project that targets
'WindowsPhoneApp,Version=v8.1".Getting this error while installing the library..Please help me to find an appropriate library..
This message means that you try to install a library that is not compatible with Windows Phone 8.1.
Lookat that nuget package shows only a .net 4.0 library:
socketio4net.client.0.6.26\lib\net40
which can be only used in Desktop .Net 4.x (40, 4.5.x, 4.6.x) projects.
You need to use a WinRT compatible lib that supports Phone 8.1.

Setup Mono 3.0.1 in MonoDevelop 2.8 on Windows

I have installed MonoDevelop 2.8.2 using the windows .Net runtimes for now. I would like to use the latest Mono binaries (3.0.1) instead. To achieve that I´ve installed Mono 3.0.1 for windows from here
I´ve added the runtime in MonoDevelop via Tools->Options->Preferences->.NET Runtimes so that it shows up correctly in the list and set it as default. I made sure that my project uses this runtime (Project->Active Runtime->Mono 3.0.1). When I build a simple console project now I get the following error:
Build failed.The specified executable is not a valid application for
this OS platform.
Can anybody shed some light whats going wrong here?

How to create a native installer in AIR. i.e Installer should be .exe, .deb, .dmg instead of .air

I want to create a native installer for windows, mac and linux machines, Instead of .air file I want to create .exe , .dmg and .deb files respectively.
So that i can enable the application to be installed natively.
adt -package -target native target.exe source.air
adt comes from AIR SDK. For windows, you also need to have java 1.5 or higher on path for adt to work (not installed by default).
Edit: Instruction above are for windows. Also, on each platform it is possible to make native installer for this platform only - no cross-packaging exist for now.