SlideShare a Scribd company logo
16/4/2015 http://blog.kerul.net 1
Installation, Settings & Deployment
(Hybrid approach using HTML5, jQuery,
Apache Cordova and Android SDK)
Khirulnizam Abd Rahman
blog.kerul.net
About Khirulnizam
 Lecturer of Computer Science, Faculty of Information
Science and Technology, Selangor International
Islamic University College (KUIS) – since 2000.
 Certified HRDF Trainer
 Codes in blog.kerul.net
 Avid Android developer since 2010 – MDeC ICONApp
2010.
 Grants MDeC ICON 2010,2011; MDeC ICONdap
2013.
 Apps in Google Play
 SmartSolat (prototype) – 2014 bit.ly/smartsolat
 M-Mathurat – 200K ( bit.ly/m-mathurat )
 Peribahasa Dictionary – 20K ( bit.ly/pbahasa)
 mDictionary – open-sourced ( bit.ly/m-dictionary )
16/4/2015 http://blog.kerul.net 2
Hybrid Approach
16/4/2015 http://blog.kerul.net 3
Hybrid Approach – consists
of
 HTML + jQuery (JavaScript, CSS)
 Apache Cordova (HTML to Android
Project)
 Android Studio– to generate APK
16/4/2015 http://blog.kerul.net 4
What are tools needed to
develop Android App Hybrid?
 HTML knowledge
 jQuery (JavaScript + CSS framework)
 PHP&MySQL (Online DB)
 NodeJS
 Apache Ant
 Apache Cordova
 Latest JDK
 Android Studio
 Android SDK
16/4/2015 http://blog.kerul.net 5
Apache ANT
 Apache Ant is a Java library and
command-line tool
 to drive processes described in build
files as targets and extension points
dependent upon each other.
 The main known usage of Ant is the
build of Java applications.
16/4/2015 http://blog.kerul.net 6
NodeJS
16/4/2015 http://blog.kerul.net 7
 Node.js contains a built-in library to
allow applications to act as a Web
server without software such as Apache
HTTP
Apache Cordova
 Previously known as PhoneGap
 use HTML5 and CSS3 for their rendering,
and JavaScript for logic
 HTML5 provides better support for GPS,
camera, video, etc.
 includes basic plugins that allow access to
the device's hardware’s.
 embeds HTML5 code inside a native
WebView on the device, using a foreign
function interface to access the native
resources of the device.
16/4/2015 http://blog.kerul.net 8
Agenda Day 4
16/4/2015 ANDROID APP DEVELOPMENT (Hybrid) - blog.kerul.net 9
Installation of Android
Studio
 Install JDK (needed to run Android
Studio)
 Install the Android Studio
 Inside Android Studio is included
Android SDK
 Needed to convert web apps into
Android project
16/4/2015 http://blog.kerul.net 10
Android Studio
 Download from
http://developer.android.com/sdk/index.html
16/4/2015 http://blog.kerul.net 11
Inside Android Studio
bundle
 Android Studio IDE
 Android SDK tools
 Android 5.0 (Lollipop) Platform
 Android 5.0 emulator system image with
Google APIs
16/4/2015 http://blog.kerul.net 12
Installation of Cordova
 Install Apache ANT – extract the binary
provided (or download from
http://ant.apache.org/bindownload.cgi)
 Install NodeJS -
http://nodejs.org/download/
16/4/2015 http://blog.kerul.net 13
Environment Variables
 Right-click on MyComputer ->
Properties
16/4/2015 http://blog.kerul.net 14
Environment Variables
 Set JAVA_HOME
 Set ANT_HOME
 Set ANDROID_HOME
 Set the path to Android SDK platforms
and platform_tools
 Testing
16/4/2015 http://blog.kerul.net 15
Set JAVA_HOME
16/4/2015 http://blog.kerul.net 16
Set ANT_HOME
16/4/2015 http://blog.kerul.net 17
Set Path
16/4/2015 http://blog.kerul.net 18
Set path
Add to end of the existing PATH
;%JAVA_HOME%bin;
%ANT_HOME%bin;
%ANDROID_HOME%tools;
%ANDROID_HOME%platform-tools
16/4/2015 http://blog.kerul.net 19
Cmd line
 To run ant commands
 Search for CMD, right-click and Run as
administrator
16/4/2015 http://blog.kerul.net 20
Test running ant
16/4/2015 http://blog.kerul.net 21
Download Cordova
 Update nodejs
npm update
 Install Apache Cordova
npm install –g cordova
16/4/2015 http://blog.kerul.net 22
16/4/2015 http://blog.kerul.net 23
Generate Android Project
16/4/2015 http://blog.kerul.net 24
16/4/2015 http://blog.kerul.net 25
16/4/2015 http://blog.kerul.net 26
16/4/2015 http://blog.kerul.net 27
16/4/2015 http://blog.kerul.net 28
16/4/2015 http://blog.kerul.net 29
Open Android project in
Android Studio
16/4/2015 http://blog.kerul.net 30
Change ic_launcher
 Res/drawable
16/4/2015 http://blog.kerul.net 31
 Turn ON the AVD
16/4/2015 http://blog.kerul.net 32
Test APK on Emulator
 Complete guide: http://blog.kerul.net/2015/04/android-
studio-to-generate-signed-apk.html16/4/2015 http://blog.kerul.net 33
Sign APK
 Preparation
 Signed APK
 Icon 512x512
 2 apps screenshots
 Banner 1024 w x 500 h
 Apps descriptions
 https://play.google.com/apps/publish/
 Complete guide:
http://blog.kerul.net/2015/04/publishing-
apps-to-google-play.html
16/4/2015 http://blog.kerul.net 34
Upload to Google Play
All the best
 Check your apps tomorrow
16/4/2015 http://blog.kerul.net 35

More Related Content

What's hot (20)

DOCX
INTERNSHIP REPORT
Mufaddal Vasi
 
PDF
21 web-developement-trends
Khairul Aizat Kamarudzzaman
 
PDF
Introduction to Android Development
Edureka!
 
PDF
Android development 1july
Edureka!
 
PPT
Web Development
Wei Weng
 
PDF
Using Android 5.0 Lollipop
Edureka!
 
PPTX
Top 10 open source technologies for enterprise/Business web application devel...
Techcronus Business Solutions Pvt. Ltd.
 
PDF
Flutter workshop @ bang saen 2020
Anuchit Chalothorn
 
ODP
Use Ionic Framework to develop mobile application
Lucio Grenzi
 
PDF
Android Jump Start
Haim Michael
 
PDF
Fast and fluid, Metro style application on Windows 8
Supote Phunsakul
 
PPTX
Mobile Development With Flash Platform
Mihai Corlan
 
PDF
Develop Mobile App Using Android Lollipop
Edureka!
 
PPTX
Shining a light on performance (js meetup)
Yoav Niran
 
PDF
BACnet HMI5 - BACnet Touch Panel - BACnet Touch Screen - HMI
bacmove
 
PDF
Alex Corbi building a 100 % Open Source based Open Data Platform
Alex Corbi
 
PPTX
Windows 10 pentru dezvoltatori - InfoEducație 2015
Julian Atanasoae
 
PDF
Amazing vue.js projects that are open source and free.
Katy Slemon
 
PPTX
Uniface 10 Enterprise Edition
Uniface
 
PDF
Android TCJUG
Justin Grammens
 
INTERNSHIP REPORT
Mufaddal Vasi
 
21 web-developement-trends
Khairul Aizat Kamarudzzaman
 
Introduction to Android Development
Edureka!
 
Android development 1july
Edureka!
 
Web Development
Wei Weng
 
Using Android 5.0 Lollipop
Edureka!
 
Top 10 open source technologies for enterprise/Business web application devel...
Techcronus Business Solutions Pvt. Ltd.
 
Flutter workshop @ bang saen 2020
Anuchit Chalothorn
 
Use Ionic Framework to develop mobile application
Lucio Grenzi
 
Android Jump Start
Haim Michael
 
Fast and fluid, Metro style application on Windows 8
Supote Phunsakul
 
Mobile Development With Flash Platform
Mihai Corlan
 
Develop Mobile App Using Android Lollipop
Edureka!
 
Shining a light on performance (js meetup)
Yoav Niran
 
BACnet HMI5 - BACnet Touch Panel - BACnet Touch Screen - HMI
bacmove
 
Alex Corbi building a 100 % Open Source based Open Data Platform
Alex Corbi
 
Windows 10 pentru dezvoltatori - InfoEducație 2015
Julian Atanasoae
 
Amazing vue.js projects that are open source and free.
Katy Slemon
 
Uniface 10 Enterprise Edition
Uniface
 
Android TCJUG
Justin Grammens
 

Viewers also liked (9)

PPT
Chapter 2 Java Methods
Khirulnizam Abd Rahman
 
PPTX
Topik 4 Teknologi Komputer: Hardware, Software dan Heartware
Khirulnizam Abd Rahman
 
PPTX
Tips menyediakan slaid pembentangan berkesan - tiada template
Khirulnizam Abd Rahman
 
PPTX
Topik 3 Masyarakat Malaysia dan ICT
Khirulnizam Abd Rahman
 
PPT
Chapter 5 Class File
Khirulnizam Abd Rahman
 
PPT
Chapter 2 Method in Java OOP
Khirulnizam Abd Rahman
 
PPT
Chapter 6 Java IO File
Khirulnizam Abd Rahman
 
PPT
Chapter 4 - Classes in Java
Khirulnizam Abd Rahman
 
PPT
Chapter 3 Arrays in Java
Khirulnizam Abd Rahman
 
Chapter 2 Java Methods
Khirulnizam Abd Rahman
 
Topik 4 Teknologi Komputer: Hardware, Software dan Heartware
Khirulnizam Abd Rahman
 
Tips menyediakan slaid pembentangan berkesan - tiada template
Khirulnizam Abd Rahman
 
Topik 3 Masyarakat Malaysia dan ICT
Khirulnizam Abd Rahman
 
Chapter 5 Class File
Khirulnizam Abd Rahman
 
Chapter 2 Method in Java OOP
Khirulnizam Abd Rahman
 
Chapter 6 Java IO File
Khirulnizam Abd Rahman
 
Chapter 4 - Classes in Java
Khirulnizam Abd Rahman
 
Chapter 3 Arrays in Java
Khirulnizam Abd Rahman
 
Ad

Similar to Android app development hybrid approach for beginners - Tools Installations and Settings in Windows 8 (20)

PPTX
Android development beginners faq
Khirulnizam Abd Rahman
 
PDF
Industry trend of HTML5 in 2012 (2012년 HTML5 총정리)
Wonsuk Lee
 
PPTX
Mobile & android apps presentation
Aya Taleb
 
PPTX
Hybrid Mobile Apps - Meetup
Sanjay Patel
 
PPTX
Phone gap
Madhura Keskar
 
PPTX
Genymotion Android fast development
Adrian Mikeliunas
 
PPT
Oracle mcs overview 1029
Oracle Corporation
 
PDF
Phonegap presentation
Atilla Özgür
 
PDF
Getting Started with Android Development
Edureka!
 
PDF
MAUI vs Flutter vs React vs Avalonia_ A Detailed Comparison.pdf
DianApps Technologies
 
PDF
Day 1 Android: Before Getting Started
Ahsanul Karim
 
PDF
AN ANDROID APP FOR BUILDING STUDENT PROFILES
IRJET Journal
 
PPT
Webinar on Google Android SDK
Schogini Systems Pvt Ltd
 
PPTX
mhealth with HealthVault
Vaibhav Bhandari
 
PPTX
A Mobile Solution for #TheUnderdog
Sylvia Navarro Nicosia
 
PDF
Building Cross-Platform Mobile Apps
Troy Miles
 
PPT
Ramakri
msramakrishna
 
PPTX
iOS & Android Application Development - Pee Dee User Group Meeting
Jim Tochterman
 
PPTX
Course overview 1
Michael Shrove
 
KEY
Android Scripting
Juan Gomez
 
Android development beginners faq
Khirulnizam Abd Rahman
 
Industry trend of HTML5 in 2012 (2012년 HTML5 총정리)
Wonsuk Lee
 
Mobile & android apps presentation
Aya Taleb
 
Hybrid Mobile Apps - Meetup
Sanjay Patel
 
Phone gap
Madhura Keskar
 
Genymotion Android fast development
Adrian Mikeliunas
 
Oracle mcs overview 1029
Oracle Corporation
 
Phonegap presentation
Atilla Özgür
 
Getting Started with Android Development
Edureka!
 
MAUI vs Flutter vs React vs Avalonia_ A Detailed Comparison.pdf
DianApps Technologies
 
Day 1 Android: Before Getting Started
Ahsanul Karim
 
AN ANDROID APP FOR BUILDING STUDENT PROFILES
IRJET Journal
 
Webinar on Google Android SDK
Schogini Systems Pvt Ltd
 
mhealth with HealthVault
Vaibhav Bhandari
 
A Mobile Solution for #TheUnderdog
Sylvia Navarro Nicosia
 
Building Cross-Platform Mobile Apps
Troy Miles
 
Ramakri
msramakrishna
 
iOS & Android Application Development - Pee Dee User Group Meeting
Jim Tochterman
 
Course overview 1
Michael Shrove
 
Android Scripting
Juan Gomez
 
Ad

More from Khirulnizam Abd Rahman (17)

PPTX
Topik 2 Sejarah Perkembanggan Ilmu NBWU1072
Khirulnizam Abd Rahman
 
DOCX
Panduan tugasan Makmal Teknologi Maklumat dalam Kehidupan Insan
Khirulnizam Abd Rahman
 
PPTX
Topik 1 Islam dan Teknologi Maklumat
Khirulnizam Abd Rahman
 
PDF
Application of Ontology in Semantic Information Retrieval by Prof Shahrul Azm...
Khirulnizam Abd Rahman
 
PPT
Chapter 1 Nested Control Structures
Khirulnizam Abd Rahman
 
PPT
Chapter 1 nested control structures
Khirulnizam Abd Rahman
 
PDF
DTCP2023 Fundamentals of Programming
Khirulnizam Abd Rahman
 
PDF
Npwu-mpu 3252 Teknologi Maklumat dalam Kehidupan Insan
Khirulnizam Abd Rahman
 
PPTX
Simple skeleton of a review paper
Khirulnizam Abd Rahman
 
PDF
Airs2014 brochure
Khirulnizam Abd Rahman
 
DOCX
Rangka kursus pembangunan aplikasi android kuiscell khirulnizam
Khirulnizam Abd Rahman
 
PPTX
Khirulnizam malay proverb detection - mobilecase 19 sept 2012 - copy
Khirulnizam Abd Rahman
 
DOCX
Maklumat program al quran dan borang
Khirulnizam Abd Rahman
 
PDF
Senarai doa al-mathurat sughro - dengan terjemahan
Khirulnizam Abd Rahman
 
PDF
Al mathurat sughra - ringkas - m-mathurat
Khirulnizam Abd Rahman
 
PPT
Kemalangan akibat tumpuan terganggu
Khirulnizam Abd Rahman
 
PPT
Khirulnizam - students experience in using blog as a learning tool - world co...
Khirulnizam Abd Rahman
 
Topik 2 Sejarah Perkembanggan Ilmu NBWU1072
Khirulnizam Abd Rahman
 
Panduan tugasan Makmal Teknologi Maklumat dalam Kehidupan Insan
Khirulnizam Abd Rahman
 
Topik 1 Islam dan Teknologi Maklumat
Khirulnizam Abd Rahman
 
Application of Ontology in Semantic Information Retrieval by Prof Shahrul Azm...
Khirulnizam Abd Rahman
 
Chapter 1 Nested Control Structures
Khirulnizam Abd Rahman
 
Chapter 1 nested control structures
Khirulnizam Abd Rahman
 
DTCP2023 Fundamentals of Programming
Khirulnizam Abd Rahman
 
Npwu-mpu 3252 Teknologi Maklumat dalam Kehidupan Insan
Khirulnizam Abd Rahman
 
Simple skeleton of a review paper
Khirulnizam Abd Rahman
 
Airs2014 brochure
Khirulnizam Abd Rahman
 
Rangka kursus pembangunan aplikasi android kuiscell khirulnizam
Khirulnizam Abd Rahman
 
Khirulnizam malay proverb detection - mobilecase 19 sept 2012 - copy
Khirulnizam Abd Rahman
 
Maklumat program al quran dan borang
Khirulnizam Abd Rahman
 
Senarai doa al-mathurat sughro - dengan terjemahan
Khirulnizam Abd Rahman
 
Al mathurat sughra - ringkas - m-mathurat
Khirulnizam Abd Rahman
 
Kemalangan akibat tumpuan terganggu
Khirulnizam Abd Rahman
 
Khirulnizam - students experience in using blog as a learning tool - world co...
Khirulnizam Abd Rahman
 

Recently uploaded (20)

PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PDF
Python basic programing language for automation
DanialHabibi2
 
PDF
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PPTX
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
PDF
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
PDF
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PPTX
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
PPT
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
Python basic programing language for automation
DanialHabibi2
 
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 

Android app development hybrid approach for beginners - Tools Installations and Settings in Windows 8