Saturday, June 14, 2014

Adobe PhoneGap Build - Package mobile apps in the cloud

---
Adobe PhoneGap Build
Package mobile apps in the cloud.
STEPS
1) Browse https://build.phonegap.com/
2) Register an account.
2.1) Click Register.
2.2) Select free plan.
2.3) Click Get an Adobe ID (Assuming you haven’t got an Adobe ID).
2.4) Fill-in your details and click Sign Up.
2.5) Entering your Build page.
3) Uploading Project.
3.1) Create an index.html containing the following codes:
3.2) Zip the file.
3.3) Find the upload button in your Build page.
3.4) Select the zip file.
3.5) Wait for uploading process to complete.
3.6) Type your App Name, App Description and click Ready to build.
3.7) Wait for build process to complete.
3.8) Once the indicator bar is full, you can download your app for local installation.
3.9) Click the Android button.
3.10) Save to your PC and copy to your Android device.
3.11) If you have “Install blocked” problem, that means you have to go to your Android Settings and select “install from unknown sources”.
3.12) You should be able to install and get the outcome as below.
4) Further Activities.
4.1) Click your current App Name.
4.2) Click Settings to update your project.

STEPS

1) Browse https://build.phonegap.com/ 

2) Register an account.

2.1) Click Register.

2.2) Select free plan.

2.3) Click Get an Adobe ID (Assuming you haven’t got an Adobe ID).

2.4) Fill-in your details and click Sign Up.

2.5) Entering your Build page.

3) Uploading Project.

3.1) Create an index.html containing the following codes:

<!DOCTYPE html>
<html>
<head>
<title>Simple HTML5</title>
<style>
body {
   font: medium/1.5 Arial,
Helvetica, sans-serif;
}
.button {
   display: inline-block;
   line-height: 1;
   padding: 7px 10px;
   text-decoration: none;
   font-weight: bold;
   color: #fff;
   background-color: #39c;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
   -khtml-border-radius: 5px;
   border-radius: 5px;
}
</style>
</head>
<body>
<div id="wrap">
   <h1>PhoneGap Test</h1>
   <p><a
href="http://build.phonegap.com"
class="button">PhoneGap</a></p>
</div>
</body>
</html>

3.2) Zip the file.

3.3) Find the upload button in your Build page.

Click the upload button. (If you are using IE, you may need to double-click the button).

3.4) Select the zip file.

3.5) Wait for uploading process to complete.

3.6) Type your App Name, App Description and click Ready to build.

3.7) Wait for build process to complete.

3.8) Once the indicator bar is full, you can download your app for local installation.

3.9) Click the Android button.

3.10) Save to your PC and copy to your Android device.

3.11) If you have “Install blocked” problem, that means you have to go to your Android Settings and select “install from unknown sources”.

https://odhelp.blob.core.windows.net/content/articles/Images/Article350-1.png
http://www.stmarkschelt.co.uk/JBlueLine/Android/screen_shots/unknownSources.png

3.12) You should be able to install and get the outcome as below.

4) Further Activities.

Once you get used to Build.PhoneGap, you may want to upload further refinement to your app and change the settings such as App Name and App Icon.

4.1) Click your current App Name.

4.2) Click Settings to update your project.

You can update your code again and again. However PhoneGap doesn’t keep your previously uploaded codes. So make sure you keep a copy of all codes.
---

Thursday, May 15, 2014

Build.PhoneGap.com Registration

--
BUILD.PHONEGAP.COM REGISTRATION

STEPS

1) Browse to URL https://build.phonegap.com and click Register.
Choose FREE plan.
2) You need to have Adobe ID to proceed.
2.1) Or else, click create Adobe ID.
2.2) Enter your details and click Create.
2.3) Tick Agree to terms and click Accept.
3) Upload zip file.
3.1) You need to create a zip file containing an index.html. Copy the following code, save it as index.html and zip it as MyHello.

<!DOCTYPE html>
<html>
    <head>
       <title>MyHello</title>
       <meta name="viewport" content="width=device-width, initial-scale=1" />
       <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
       <link type="text/css" href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css" rel="stylesheet" />
       <script type="text/javascript" src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
    </head>

    <body>
        <div data-role="page" id="first" data-theme="a">
            <div data-role="header">
                <h1>First Hello</h1>
            </div><!-- /header -->

            <div data-role="content">
                <p>Hello Everyone!</p>
                <a href="#second">Go to second page</a>
            </div><!-- /content -->

            <div data-role="footer">
                <h4>Footer</h4>
            </div><!-- /footer -->
        </div><!-- /page -->

        <div data-role="page" id="second" data-add-back-btn="true" data-theme="b">
            <div data-role="header">
                <h1>Second Hello</h1>
            </div><!-- /header -->

            <div data-role="content">
                <p>Hello again!</p>
            </div><!-- /content -->

            <div data-role="footer">
                <h4>Footer</h4>
            </div><!-- /footer -->
        </div><!-- /page -->
     </body>
</html>
3.2) Select the zip file and upload it.
Uploading in progress.
3.3) Enter your app details and click Ready to build.
4) Install the compiled app.
4.1) Select Android icon.
4.2) Copy MyHello-debug.apk to your Android Device and install. You may need to enable “install from Unknown Source” item in your device settings.
4.3) You can update your code with recent version by clicking the update code and selecting newer codes.
--

Saturday, April 5, 2014

DREAMWEAVER CS 5-5++ CREATE MOBILE WEBSITE

-----
DREAMWEAVER CS 5-5++ CREATE MOBILE WEBSITE

STEPS

0) Preparation

0.1) Windows (minimum XP).
0.2) Dreamweaver CS5-5 or CS6.
0.3) Google Chrome (make it your default folder i.e. go to “MENU/settings/”, scroll down and click “” button.)

1) Create Website Project Folder.

1.1) Create Project Folder for “localview” i.e. c:\projects\dwmobile1.
1.2) Create Project Folder for “testingsite” i.e. c:\uwamp\www\dwmobile1.

2) Test UwAmp Server.

2.1) Run Uwamp.
Unblock mysqld and httpd if your Firewall asks you.
2.2) Click www Site button. A Web Browser will automatically loads http://localhost page.

3) Create Mobile Website Project in Dreamweaver.

3.1) Run Dreamweaver CS55 or CS6.
3.2) Go to menu/site/manage sites…
3.3) Click New Site button.
3.4) Enter Site Name and Local Site folder.
Site Name: dwmobile1
Local Site Folder: c:\projects\dwmobile1\
3.5) Click Servers item in Side Menu.
3.6) Click plus symbol in Server list.
3.7)Enter localhost server details.
3.8)Set as Testing Server.
Untick Remote column and tick Testing column.
3.9) Click save and click Done.

4) Create Sample Page.

4.1) Go to menu/New/… Page from Sample/Sample Folder=Mobile Starters/Sample Page=jQuery Mobile (Local)/DocType=HTML5. Click Create.
4.2) Save as index.html
4.3) Click Copy.
4.4) Done.

5) Viewing Output.

5.1) Click Live.

6) Viewing on Localhost.

6.1) Find the Files Panel.
The Files Panel below is showing Local view contents.
6.2) Change Local view to Testing server.
6.3) Click the Synchronize button.
6.4) Click Preview…
6.5) Click OK.
-----

DREAMWEAVER CS5-5++ Create Website Project

-----
DREAMWEAVER CS5-5++ Create Website Project

STEPS

0) Preparation

0.1) Windows (minimum XP).
0.2) Dreamweaver CS5-5 or CS6.
0.3) Google Chrome (make it your default folder i.e. go to “MENU/settings/”, scroll down and click “” button.)

1) Create Website Project Folder.

1.1) Create Project Folder for “localview” i.e. c:\projects\dwsite1.
1.2) Create Project Folder for “testingsite” i.e. c:\uwamp\www\dwsite1.

2) Test UwAmp Server.

2.1) Run Uwamp.
Unblock mysqld and httpd if your Firewall asks you.
2.2) Click www Site button. A Web Browser will automatically loads http://localhost page.

3) Create Website Project in Dreamweaver.

3.1) Run Dreamweaver CS55 or CS6.
3.2) Go to menu/site/manage sites…
3.3) Click New Site button.
3.4) Enter Site Name and Local Site folder.
Site Name: dwsite1
Local Site Folder: c:\projects\dwsite1\
3.5) Click Servers item in Side Menu.
3.6) Click plus symbol in Server list.
3.7)Enter localhost server details.
3.8)Set as Testing Server.
Untick Remote column and tick Testing column.
3.9) Click save and click Done.
4) Create a test page index.html
4.1) Blank Page/Page Type=HTML/Layout=None/DocType=HTML5. Click Create button.
4.2) Save as “index.html”
4.3) Type Hello Test in between <body> and </body> tags.
4.4) Click Live button.
5) Synchronize with Testing Site.
5.1) Find the Site Panel. Currently it shows “Local view” project folder.
5.2) Change the folder to “Testing server” project folder.
5.3) Click Synchronize button.
5.4) Click Preview…
5.5) Click OK.
-----