Black Berry 10 Web Works SDK Setup
Watch this Video and Start to make apps in BB10
Tools Needed :
After Download
There is a lots of opportunity waiting in the field of app development it is in the blackberry OS or any other OS like as Android , Java, Windows you do more with this cool stuff. Submit apps in corresponding apps store you can earn money with your beautiful app work.Do you know the basic of HTML thats enough to start developing an apps in BB10. ya thats true with html code you can develop your own within minutes.Here i demonstrate how to setup BB10 platform in your PC.I have video tutorial about this, if you wish to watch this cool video you will get ideas undoubtedly.
Tools Needed :
- Ripple emulator
- Web Works Sdk
- Black Berry 10 Simulator
- VMware
After Download
- Click and Drop ripple_ui.crx in to you chrome browser and enable
- Install BB10 Web Works SDK
- Install Black Berry 10 Simulator
- VMware-player
- Navigate to your RippleSites folder. As a reminder, you created it in one of the following locations when you set up your tools:
- Windows XP: C:\Documents and Settings\<Username>\RippleSites
- Windows 7: C:\Users\<Username>\RippleSites
- Mac OS: /Users/<Username>/RippleSites
- In your RippleSites folder, create a folder named HelloWorld.
- In your HelloWorld folder, create an index.html file. This file is the landing page for your app. Use the following code:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Hello World</title> </head> <body> <p>Hello World!</p> </body> </html>
- When we package your app, we will need an icon.png file to display on the BlackBerry device. In your HelloWorld folder, create a folder named images. Download icon.zip and extract theicon.png file to the images folder.
- Create a config.xml file in your HelloWorld folder. Use the following code:
<?xml version="1.0" encoding="UTF-8"?> <widget xmlns="http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" version="1.0.0.0" id="HelloWorldApp"> <name>helloWorld</name> <author>My name</author> <description>The classic first app</description> <icon src="images/icon.png"/> <content src="index.html"/> </widget>
View Your App In Ripple Emulator
The Ripple emulator can act as a local web server for your HTML5 app and can simulate what your app will look like on a BlackBerry device.- Open the Google Chrome browser and make sure that Ripple services are running. If they aren't, click the Ripple icon beside the address bar, and then click Start Ripple Services.
- Enter the URL for your Hello World landing page. Substitute http://localhost:9910 for the first part of the file path, up to and including /RippleSites (for example,http://localhost:9910/HelloWorld/index.html).
- When the page is finished loading, click the Ripple icon beside the address bar.
- Click Enable.
- When you are asked to select a platform, select BlackBerry 10 WebWorks
0 comments:
Post a Comment