Installing Blackberry Webworks on Vista - blackberry-webworks

How do I install Blackberry Webworks on Vista? Do I need to install a web server as well?

You should be able to download and install webworks on Vista. It's not officially supported, but I have heard people say it works.
https://developer.blackberry.com/html5/download/sdk
You don't need a web server.
If you are having any specific problems when attempting to install post the details.

Related

MAMP download asking for .Net core 3.1 Runtime. Unsure which one to select

I was following a tutorial to download MAMP earlier, and I ran into this problem which wasn't explain in the tutorial. After I successfully downloaded MAMP, and I tried to open the application, it indicates that my computer do not have .Net Core 3.1 and I need to download it (directs me to this https://dotnet.microsoft.com/en-us/download/dotnet/3.1/runtime?cid=getdotnetcore)
There are three options between: Run Console Apps with download x64 or download x86 / Run Desktop Apps with download x64 or download x86 / Run Server Apps with downloading hosting bundle. Which one is suitable?
You have to download the Run Desktop Apps x86 version, even if your system is x64.
You need to check the system type on your computer.
Here is a tutorial video that might help you to solve the error for installing .NET Core.
https://www.youtube.com/watch?v=BqYnexZwBPU&ab_channel=TroubleChute
Installing the x86 version setup even though my system is x64 worked for me.

How can i deploy my worklight project to my blackberry device..?

I have packaged my application successfully using ripple with chrome.
What process i have to follow to deploy my app to my blackberry device for testing purpose?
There are several ways.
You can try using the BlackBerry Desktop Manager software which should allow you application syncing.
You can use the JavaLoader commandline tool, provided by BlackBerry.
Personally, I use JavaLoader.
It is a simple one-liner in CMD: javaloader load path-to-cod-file
The one-liner above assumes you have added JavaLoader (an .exe in the bin folder of the BlackBerry WebWorks SDK for BlackBerry OS 6/7) to your PATH, so that it will be available for useage like in the example)
Please keep an mind that after you generate the .cod file using Ripple, what you basically have is an actual BlackBerry (WebWorks) project, the way to deploy it would be the same as any other BlackBerry application, whether it was created by Worklight or any other software.

How to install a .bar file hosted in a remote server to a BlackBerry 10 Dev Alpha device

I have port an Android application to BlackBerry using Android Runtime. I can install that application successfully using Eclipse. Now I want to put those deploy files (MyApp.bar) in to a remote server and download the .bar file using a browser and install it to another BlackBerry 10 Dev Alpha device. I was able to download but unable to install the .bar file. What should I do?
I believe that you are looking for an app or tool that you can run from a BB10 device itself to install the .bar file, after you've already downloaded it. There used to be a tool like this for the Playbook, but it seems to be no longer maintained and Blackberry (RIM) have blocked the method this app used to perform the install in newer version of the Playbook OS (and presumably BB10 as well).
A solution which has been reported to work by some in the Blackberry Developer forums is the Playbook App Manager as a Firefox or Chrome plugin. You can use this plugin from the browser on your PC to push the .bar to your other Blackberry 10 Dev Alpha device over the network.
If that doesn't work, that leaves you only with external tools that you already know work like the Eclipse plugin, and you could also use the command line tools like blackberry-deploy or batchbar-deploy installed with the SDK.
Finally, crackberry.com has a tutorial on sideloading Android apps using the DDPB third party app, which requires Java and .Net (so the browser plugin tool is really preferred).

Install blackberry plugin in Titanium studio OsX

i have a huge problem since yesterday!!
i have installed titanium studio,it runs with android and iphone.
I know it does not support blackberry yet, but is there a workaround that let me build app using the blackberry plugin?
If so, can anyone guide me to a tutorial on installing the BB plugin in titanium?
I tried to follow this and this with no success:
thank you.
You might notice that in the second link, near the top of the page it states "Currently, BlackBerry development is enabled on Windows OS only." This is because we (Appcelerator) dont support beta software, and the only non-beta version of the BlackBerry emulator (provided by BlackBerry) is windows only. This emulator is required to do any kind of BlackBerry development.
It appears that the blackberry OSX plugin requires "rosetta" to install on OSX so the installer will not work on later versions of the operating system
i just needed to be registered as minimum with indie account !!

How can I check the device platform before deployment in the .NET Compact Framework?

I've developed an application for Windows Mobile using Windows Mobile 6 Pro with CF 3.5 and I have some deployment questions.
I'm targeting only Pocket PC and I don't want to let users install it on their smartphone (because it simply won't work).
How can I check for the platform on which the user is installing the application and show him some error message?
Just to let you know, I have an .msi in order to install the app into the device from the desktop (setup project with cab inside), and it's fine.
I just need this extra verification.
See this link on how you can detect the platform. Cab files support an optional setup.dll, which can be used for registering custom actions in Install init, Install exit, Uninstall init and Unistall exit. You could use the install init entry point and stop the installation or show a dialog if the platform doesn't match. This of course has to be native development.