Andreas Schreiber

Size: px
Start display at page:

Download "Andreas Schreiber <andreas.schreiber@dlr.de>"

Transcription

1 Chart 1 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Developing Apps for Android and Other Platforms with Kivy and Python Andreas Schreiber <andreas.schreiber@dlr.de> droidcon 2013, Berlin, 09. April 2013

2 Chart 2 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Outline Introduction Python Kivy Demos Limitations Credits

3 Chart 3 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Me Scientist, Head of department Founder, CEO Enthusiastic about Python

4 Chart 4 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > DLR German Aerospace Center Research Institution Space Agency Project Management Agency

5 Chart 5 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Locations and employees 7400 employees across 32 institutes and facilities at 16 sites. Offices in Brussels, Paris, Tokyo and Washington. ~1400 employees develop software Juelich Cologne Bonn Bremen Trauen Braunschweig Lampoldshausen Stade Hamburg Goettingen Neustrelitz Berlin Stuttgart Augsburg Oberpfaffenhofen Weilheim

6 Chart 6 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Python

7 Python General-purpose, high-level programming language Object-oriented, aspect-oriented, functional Dynamic type system Easy-to-learn with clear and expressive syntax def faculty(x): if x > 1: return x * faculty(x - 1) else: return 1

8 Chart 8 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Python on Mobile Devices Early Mobile Development with Python PyS60 for Symbian Python CE for Windows Mobile Current Mobile Development with Python Scripting Layer for Android (SL4A) Python for Android (Py4A) PySide / Qt for Android WinRT / IronPython for Windows 8 Kivy

9 Chart 9 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Kivy

10 Chart 10 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Kivy Platform-independent Python-Framework Available for Android ios Meego Windows Linux OSX (Raspberry Pi) kivy.org Development in Python on all platforms Not emulated!

11 Chart 11 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Kivy Basics Framework for Natural User Interfaces (NUI) Touchscreens / Multi-Touch GPU accelerated graphics Based on OpenGL ES 2.0 Suitable for prototypes as well as products Porting to new platforms is easy

12 Chart 12 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Kivy Software Open Source (LGPL), 7 Core developer Source code: Documentation: Kivy on Google Play:

13 Chart 13 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Kivy says Hello! from kivy.app import App from kivy.uix.button import Button class HelloApp(App): def build(self): return Button(text='Hello Berlin') HelloApp().run()

14 Chart 14 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python >

15 Chart 15 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Development with Kivy Python for widgets, input, program logic Language KV for layout und graphics Cython for low-level access to graphic routines

16 Chart 16 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Hello Berlin with KV from kivy.app import App class HelloApp(App): pass HelloApp().run() File hello.kv defines root widget #:kivy 1.0 Button: text: Hello Berlin

17 Chart 17 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Example: Pong import kivy from kivy.app import App from kivy.uix.widget import Widget class PongGame(Widget): pass class PongApp(App): def build(self): return PongGame() if name == ' main ': PongApp().run()

18 Chart 18 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Pong Graphics #:kivy <PongGame>: canvas: Rectangle: pos: self.center_x - 5, 0 size: 10, self.height Label: font_size: 70 center_x: root.width / 4 top: root.top - 50 text: "0" Label: font_size: 70 center_x: root.width * 3 / 4 top: root.top - 50 text: "0"

19 Chart 19 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Pong Full example:

20 Chart 20 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Accessing Java Classes from Python Smartphones have many APIs Camera, Compass, Contacts, Location, Access from Python via PyJNIus Implemented with JNI and Java reflection Example from jnius import autoclass Hardware = autoclass('org.renpy.android.hardware') print 'DPI is', Hardware.getDPI()

21 Chart 21 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Packaging Creating packages for Windows, OSX, Android und ios:

22 Chart 22 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Build Tools Tool chain Python-for-android Cross compiler for ARM Android SDK & NDK Python and some Python packages Buildozer Hides the complexity: Downloads, compiles, packages Kivy source code % buildozer android debug deploy run

23 Chart 23 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Demos

24 Chart 24 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Kivy Showcase

25 Chart 25 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Kivy Pictures

26 Chart 26 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Small Dragon Luki Speech therapy game for kids

27 Chart 27 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Small Dragon Luki

28 Chart 28 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > MQTT Client

29 Folie 29 mobile.cologne > Andreas Schreiber Plattformübergreifende Apps entwickeln mit Kivy und Python > Steering Plant Growth Webcam takes picture of plants Computer detects plant Computer generates an image for lighting Light source (e.g., a projector) illuminates the plant using the generated image

30 Chart 30 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python >

31 Chart 31 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python >

32 Chart 32 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python >

33 Chart 33 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python >

34 Chart 34 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Other Examples

35 ios-app Deflectouch

36 ios/android-app ProcessCraft

37 Chart 37 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Limitations

38 Chart 38 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Missing, but Planned (or In Progress) User Interface Designer Design tool for Kivy Language KV Planned for GSoC Abstraction of mobile APIs Platform-independent Python wrapper for platform APIs (Android, ios, Linux/Mac/Windows) Project Plyer will start as GSoC project maybe Porting to Raspberry Pi Useful for small/cheap standalone systems Founded via Crowdsourcing (bountysource.com)

39 Chart 39 > droidcon 2013 > A. Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Credits Thanks to the Kivy developers Mathieu Virbel Thomas Hansen Gabriel Pettier and many others

40 > droidcon 2013 Chart > A. 40 Schreiber Developing Apps for Android and Other Platforms with Kivy and Python > Questions? Summary Kivy allows platform-independent development of apps for Android, ios, Meego, Windows, OSX and Linux Suitable for multi-touch and graphics applications, such as kiosk systems, exhibits, games, Andreas Schreiber

Programming Mobile Apps with Python

Programming Mobile Apps with Python Programming Mobile Apps with Python Andreas Schreiber EuroPython 2012, Florence, Italy (July 3, 2012) Medando Mobile Health Apps Slide 2 My Blood Pressure Slide 3 Overview

More information

Some Experiences With Python For Android (Py4A) Nik Klever University of Applied Sciences Augsburg

Some Experiences With Python For Android (Py4A) Nik Klever University of Applied Sciences Augsburg Some Experiences With Python For Android (Py4A) Nik Klever University of Applied Sciences Augsburg Content Introduction and General Aspects SL4A Basics Architecture / Features / API SL4A API Motivation

More information

KIVY - A Framework for Natural User Interfaces

KIVY - A Framework for Natural User Interfaces KIVY - A Framework for Natural User Interfaces Faculty of Computer Sciences Source of all Slides adopted from http://www.kivy.org Kivy - Open Source Library Kivy is an Open Source Python library for rapid

More information

Andreas Schreiber, Michael Meinel, Tobias Schlauch

Andreas Schreiber, Michael Meinel, Tobias Schlauch DLR.de Chart 1 An Open Source Software Directory for Aeronautics and Space Andreas Schreiber, Michael Meinel, Tobias Schlauch German Aerospace Center (DLR) Roberto Galoppini SourceForge DLR.de Chart 2

More information

The DLR Satellite Station in Inuvik a Milestone for the Canadian-German Cooperation in Earth Observation

The DLR Satellite Station in Inuvik a Milestone for the Canadian-German Cooperation in Earth Observation The DLR Satellite Station in Inuvik a Milestone for the Canadian-German Cooperation in Earth Observation Erhard Diedrich German Remote Sensing Data Center DFD EOC German Aerospace Center DLR May 2016 DLR

More information

RepoGuard Validation Framework for Version Control Systems

RepoGuard Validation Framework for Version Control Systems RepoGuard Validation Framework for Version Control Systems Remidi09 (2009-07-13, Limerick) Malte Legenhausen, Stefan Pielicke German Aerospace Center (DLR), Cologne http://www.dlr.de/sc Slide 1 Remidi09

More information

Mixing Python and Java How Python and Java can communicate and work together

Mixing Python and Java How Python and Java can communicate and work together Mixing Python and Java How Python and Java can communicate and work together EuroPython 2009 (June 30th 2009, Birmingham) Andreas Schreiber German Aerospace Center (DLR), Cologne,

More information

All About Android WHAT IS ANDROID?

All About Android WHAT IS ANDROID? All About Android WHAT IS ANDROID? Android specifically refers to a mobile operating system (based on Linux) that is developed by Google. It is open-source software, meaning that anyone can download the

More information

Automation of Aircraft Pre-Design with Chameleon

Automation of Aircraft Pre-Design with Chameleon Automation of Aircraft Pre-Design with Chameleon Arne Bachmann Simulation- and Software Technology German Aerospace Center (DLR) ADVCOMP 2009, Oct 13 th, Sliema/Malta Slide 1 Overview Who we are Introduction

More information

Writing standalone Qt & Python applications for Android

Writing standalone Qt & Python applications for Android Writing standalone Qt & Python applications for Android Martin Kolman Red Hat & Faculty of Informatics, Masaryk University http://www.modrana.org/om2013 martin.kolman@gmail.com 1 Overview Writing Android

More information

BogDan Vatra and Andy Gryc. Qt on Android: Is it right for you?

BogDan Vatra and Andy Gryc. Qt on Android: Is it right for you? BogDan Vatra and Andy Gryc Qt on Android: Is it right for you? Coffee and Code sessions Free, three-hour, hands-on session that delves into the internals of Qt on Android. Learn how to: set up the Qt development

More information

Scalable Distributed Schur Complement Solvers for Internal and External Flow Computations on Many-Core Architectures

Scalable Distributed Schur Complement Solvers for Internal and External Flow Computations on Many-Core Architectures Scalable Distributed Schur Complement Solvers for Internal and External Flow Computations on Many-Core Architectures Dr.-Ing. Achim Basermann, Dr. Hans-Peter Kersken, Melven Zöllner** German Aerospace

More information

Android, Bluetooth and MIAC

Android, Bluetooth and MIAC Android, Bluetooth and MIAC by Ben Rowland, June 2012 Abstract Discover how easy it is to use TCP network communications to link together high level systems. This article demonstrates techniques to pass

More information

Mobile Development with Qt

Mobile Development with Qt Mobile Development with Qt Developing for Symbian and Maemo Daniel Molkentin Nokia, Qt Development Frameworks 1 Yours Truly Developer and Promoter for the KDE Project since 2000 Author of The Book of Qt

More information

Developing Applications for ios

Developing Applications for ios Developing Applications for ios Lecture 1: Mobile Applications Development Radu Ionescu raducu.ionescu@gmail.com Faculty of Mathematics and Computer Science University of Bucharest Content Key concepts

More information

INTRODUCTION TO ANDROID CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 11 02/15/2011

INTRODUCTION TO ANDROID CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 11 02/15/2011 INTRODUCTION TO ANDROID CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 11 02/15/2011 1 Goals of the Lecture Present an introduction to the Android Framework Coverage of the framework will be

More information

Measuring Travel Time Reliability for an FCD-based Route Information System

Measuring Travel Time Reliability for an FCD-based Route Information System Measuring Travel Time Reliability for an FCD-based Route Information System Rüdiger Ebendt Measuring TTR for an FCD-based Route Information System > 08 October 2012 > 1 German Aerospace Center Exploratory

More information

The Most Popular UI/Apps Framework For IVI on Linux

The Most Popular UI/Apps Framework For IVI on Linux The Most Popular UI/Apps Framework For IVI on Linux About me Tasuku Suzuki Qt Engineer Qt, Developer Experience and Marketing, Nokia Have been using Qt since 2002 Joined Trolltech in 2006 Nokia since 2008

More information

QML and JavaScript for Native App Development

QML and JavaScript for Native App Development Esri Developer Summit March 8 11, 2016 Palm Springs, CA QML and JavaScript for Native App Development Michael Tims Lucas Danzinger Agenda Native apps. Why? Overview of Qt and QML How to use JavaScript

More information

Advances and Work in Progress in Aerospace Predesign Data Exchange, Validation and Software Integration at the German Aerospace Center

Advances and Work in Progress in Aerospace Predesign Data Exchange, Validation and Software Integration at the German Aerospace Center Advances and Work in Progress in Aerospace Predesign Data Exchange, Validation and Software Integration at the German Aerospace Center Arne Bachmann, Markus Kunde, Markus Litz, Daniel Böhnke, Stefan König

More information

Introduction to Android

Introduction to Android Introduction to Android Poll How many have an Android phone? How many have downloaded & installed the Android SDK? How many have developed an Android application? How many have deployed an Android application

More information

Mobile Phones Operating Systems

Mobile Phones Operating Systems Mobile Phones Operating Systems José Costa Software for Embedded Systems Departamento de Engenharia Informática (DEI) Instituto Superior Técnico 2015-05-28 José Costa (DEI/IST) Mobile Phones Operating

More information

Practical Android Projects Lucas Jordan Pieter Greyling

Practical Android Projects Lucas Jordan Pieter Greyling Practical Android Projects Lucas Jordan Pieter Greyling Apress s w«^* ; i - -i.. ; Contents at a Glance Contents --v About the Authors x About the Technical Reviewer xi PAcknowiedgments xii Preface xiii

More information

Bridging the Gap: from a Web App to a Mobile Device App

Bridging the Gap: from a Web App to a Mobile Device App Bridging the Gap: from a Web App to a Mobile Device App or, so how does this PhoneGap* stuff work? *Other names and brands may be claimed as the property of others. 1 Users Want Mobile Apps, Not Mobile

More information

Programmazione Android per esseri umani

Programmazione Android per esseri umani Programmazione Android per esseri umani Roberto Bettazzoni ERLUG 1 print hello world 2 www.python.it 3 Qpython: python for Android 4 5 import web webapp=web.application(('/(.*)', 'hello'), globals()) class

More information

Introduction to Android Development. Ed Burnette

Introduction to Android Development. Ed Burnette Introduction to Android Development Ed Burnette Developing for Android is... Android architecture Standard Linux Java OpenGL SQLite Networking HTML (WebKit) Non-standard Lifecycle Dalvik Views and

More information

Beginning Nokia Apps. Development. Qt and HTIVIL5 for Symbian and MeeGo. Ray Rischpater. Apress. Daniel Zucker

Beginning Nokia Apps. Development. Qt and HTIVIL5 for Symbian and MeeGo. Ray Rischpater. Apress. Daniel Zucker Beginning Nokia Apps Development Qt and HTIVIL5 for Symbian and MeeGo Ray Rischpater Daniel Zucker Apress Contents Contents at a Glance... I Foreword About the Authors About the Technical Reviewers Acknowledgments

More information

Jordan Jozwiak November 13, 2011

Jordan Jozwiak November 13, 2011 Jordan Jozwiak November 13, 2011 Agenda Why Android? Application framework Getting started UI and widgets Application distribution External libraries Demo Why Android? Why Android? Open source That means

More information

A little code goes a long way Cross-platform game development with Lua. Ivan Beliy, Software Engineer

A little code goes a long way Cross-platform game development with Lua. Ivan Beliy, Software Engineer A little code goes a long way Cross-platform game development with Lua Ivan Beliy, Software Engineer 9/25/14 Marmalade. Trademarks belong to their respective owners. All rights reserved. 1 A bit of History!

More information

Modeling of Pre-Tactical Airline Decision Processes to enable Performance Based Airport Management

Modeling of Pre-Tactical Airline Decision Processes to enable Performance Based Airport Management Modeling of Pre-Tactical Airline Decision Processes to enable Performance Based Airport Management Steffen Wenzel, Yves Günther AGIFORS Airline Operations Study Group Meeting 2015/05/07 DLR.de Chart 2

More information

The Decaffeinated Robot

The Decaffeinated Robot Developing on without Java Texas Linux Fest 2 April 2011 Overview for Why? architecture Decaffeinating for Why? architecture Decaffeinating for Why choose? Why? architecture Decaffeinating for Why choose?

More information

HYBRID APPLICATION DEVELOPMENT IN PHONEGAP USING UI TOOLKITS

HYBRID APPLICATION DEVELOPMENT IN PHONEGAP USING UI TOOLKITS HYBRID APPLICATION DEVELOPMENT IN PHONEGAP USING UI TOOLKITS RAJESH KUMAR Technical Lead, Aricent PUNEET INDER KAUR Senior Software Engineer, Aricent HYBRID APPLICATION DEVELOPMENT IN PHONEGAP USING UI

More information

Module Title: Software Development A: Mobile Application Development

Module Title: Software Development A: Mobile Application Development Module Title: Software Development A: Mobile Application Development Module Code: SDA SDA prerequisites: CT1, HS1, MS001, CA Award of BSc. In Information Technology The Bachelor of Science in Information

More information

OpenCV on Android Platforms

OpenCV on Android Platforms OpenCV on Android Platforms Marco Moltisanti Image Processing Lab http://iplab.dmi.unict.it moltisanti@dmi.unict.it http://www.dmi.unict.it/~moltisanti Outline Intro System setup Write and build an Android

More information

Android (Basic + Advance) Application Development

Android (Basic + Advance) Application Development Android (Basic + Advance) Application Development You will learn how to create custom widgets, create animations, work with camera, use sensors, create and use advanced content providers and much more.

More information

New Space Capabilities for Maritime Surveillance

New Space Capabilities for Maritime Surveillance www.dlr.de ESA Blue Growth Marititime College, Cork, Ireland 17.4..2013 New Space Capabilities for Maritime Surveillance Susanne Lehner German Aerospace Center DLR Remote Sensing Technology Institute DLR

More information

ANDROID DEVELOPER TOOLS TRAINING GTC 2014. Sébastien Dominé, NVIDIA

ANDROID DEVELOPER TOOLS TRAINING GTC 2014. Sébastien Dominé, NVIDIA ANDROID DEVELOPER TOOLS TRAINING GTC 2014 Sébastien Dominé, NVIDIA AGENDA NVIDIA Developer Tools Introduction Multi-core CPU tools Graphics Developer Tools Compute Developer Tools NVIDIA Developer Tools

More information

Crosswalk: build world class hybrid mobile apps

Crosswalk: build world class hybrid mobile apps Crosswalk: build world class hybrid mobile apps Ningxin Hu Intel Today s Hybrid Mobile Apps Application HTML CSS JS Extensions WebView of Operating System (Tizen, Android, etc.,) 2 State of Art HTML5 performance

More information

Develop native android apps And port to other platforms

Develop native android apps And port to other platforms Develop native android apps And port to other platforms Robin Puthli, 24 October 2013 Droidcon UK 1 Me Mobile developer 2001 - present Run a 11 strong development shop Netherlands based 2 Itude Mobile

More information

Kerberos + Android. A Tale of Opportunity. Slide 1 / 39. Copyright 2012 yassl

Kerberos + Android. A Tale of Opportunity. Slide 1 / 39. Copyright 2012 yassl Kerberos + Android A Tale of Opportunity Slide 1 / 39 Platform Decisions The Statistics Slide 2 / 39 Why Go Mobile? 80% of the world's population now has a mobile phone. ( 5 Billion Phones ) Slide 3 /

More information

Android Setup Phase 2

Android Setup Phase 2 Android Setup Phase 2 Instructor: Trish Cornez CS260 Fall 2012 Phase 2: Install the Android Components In this phase you will add the Android components to the existing Java setup. This phase must be completed

More information

Evaluating Enterprise Mobile Platforms Go Big or Go Small?

Evaluating Enterprise Mobile Platforms Go Big or Go Small? Evaluating Enterprise Mobile Platforms Go Big or Go Small? Theresa Regli Principal Analyst & Managing Partner tregli@realstorygroup.com Twitter: @theresaregli @realstorygroup Real Story Group: What We

More information

How To Develop Android On Your Computer Or Tablet Or Phone

How To Develop Android On Your Computer Or Tablet Or Phone AN INTRODUCTION TO ANDROID DEVELOPMENT CS231M Alejandro Troccoli Outline Overview of the Android Operating System Development tools Deploying application packages Step-by-step application development The

More information

Cross-Platform Game Development Best practices learned from Marmalade, Unreal, Unity, etc.

Cross-Platform Game Development Best practices learned from Marmalade, Unreal, Unity, etc. Cross-Platform Game Development Best practices learned from Marmalade, Unreal, Unity, etc. Orion Granatir & Omar Rodriguez GDC 2013 www.intel.com/software/gdc Be Bold. Define the Future of Software. Agenda

More information

Introduction to Android Development. Jeff Avery CS349, Mar 2013

Introduction to Android Development. Jeff Avery CS349, Mar 2013 Introduction to Android Development Jeff Avery CS349, Mar 2013 Overview What is Android? Android Architecture Overview Application Components Activity Lifecycle Android Developer Tools Installing Android

More information

How To Make A Video From A Computer To A Phone Or Tablet Or Ipad Or Ipa Or Ipam Or Ipan Or Ipar Or Ipra Or Ipro Or Ipor Or Ipo Or Ipom Or Ipr Or Ipon

How To Make A Video From A Computer To A Phone Or Tablet Or Ipad Or Ipa Or Ipam Or Ipan Or Ipar Or Ipra Or Ipro Or Ipor Or Ipo Or Ipom Or Ipr Or Ipon www.dlr.de Folie 1 > An Integrated Laboratory for Collaborative Design in the Air Transportation System > Arne Bachmann > 06.09.2012 An Integrated Laboratory for Collaborative Design in the Air Transportation

More information

Chapter 13: Program Development and Programming Languages

Chapter 13: Program Development and Programming Languages 15 th Edition Understanding Computers Today and Tomorrow Comprehensive Chapter 13: Program Development and Programming Languages Deborah Morley Charles S. Parker Copyright 2015 Cengage Learning Learning

More information

Using Python for Cross-platform Mobile Application Development

Using Python for Cross-platform Mobile Application Development Using Python for Cross-platform Mobile Application Development Draft version c 2010-2012 Alexandru E. Şuşu Email: alex.susu@gmail.com Abstract In the last year, we are witnessing how the sales of mobile

More information

An Android based Quantum GIS prototype. Ramon Carrillo, Daniel Ochoa dochoa@espol.edu.ec

An Android based Quantum GIS prototype. Ramon Carrillo, Daniel Ochoa dochoa@espol.edu.ec An Android based Quantum GIS prototype Ramon Carrillo, Daniel Ochoa dochoa@espol.edu.ec Summary Background Past works Quantum GIS Mobile Quantum GIS Results Future works Background Robotic and computer

More information

Lecture 1 Introduction to Android

Lecture 1 Introduction to Android These slides are by Dr. Jaerock Kwon at. The original URL is http://kettering.jrkwon.com/sites/default/files/2011-2/ce-491/lecture/alecture-01.pdf so please use that instead of pointing to this local copy

More information

An Introduction to Android Application Development. Serdar Akın, Haluk Tüfekçi

An Introduction to Android Application Development. Serdar Akın, Haluk Tüfekçi An Introduction to Android Application Serdar Akın, Haluk Tüfekçi ARDIC ARGE http://www.ardictech.com April 2011 Environment Programming Languages Java (Officially supported) C (Android NDK Needed) C++

More information

Mobile Game and App Development the Easy Way

Mobile Game and App Development the Easy Way Mobile Game and App Development the Easy Way Developed and maintained by Pocketeers Limited (http://www.pocketeers.co.uk). For support please visit http://www.appeasymobile.com This document is protected

More information

Using EDA Databases: Milkyway & OpenAccess

Using EDA Databases: Milkyway & OpenAccess Using EDA Databases: Milkyway & OpenAccess Enabling and Using Scripting Languages with Milkyway and OpenAccess Don Amundson Khosro Khakzadi 2006 LSI Logic Corporation 1 Outline History Choice Of Scripting

More information

Open Source Enterprise Mobile Campus Solution. September 30, 2011

Open Source Enterprise Mobile Campus Solution. September 30, 2011 Open Source Enterprise Mobile Campus Solution September 30, 2011 umobile is a Jasig Project Sponsor open source software projects for higher education. Non-profit membership organization. Provides: Community,

More information

Università Degli Studi di Parma. Distributed Systems Group. Android Development. Lecture 1 Android SDK & Development Environment. Marco Picone - 2012

Università Degli Studi di Parma. Distributed Systems Group. Android Development. Lecture 1 Android SDK & Development Environment. Marco Picone - 2012 Android Development Lecture 1 Android SDK & Development Environment Università Degli Studi di Parma Lecture Summary - 2 The Android Platform Android Environment Setup SDK Eclipse & ADT SDK Manager Android

More information

Porting a Python Program to Android

Porting a Python Program to Android Porting a Python Program to Android Tierra Montgomery Fayetteville State University Faculty Mentor: Albert Chan Fayetteville State University Abstract In this article, we present the results of porting

More information

How To Develop For A Powergen 2.2 (Tegra) With Nsight) And Gbd (Gbd) On A Quadriplegic (Powergen) Powergen 4.2.2 Powergen 3

How To Develop For A Powergen 2.2 (Tegra) With Nsight) And Gbd (Gbd) On A Quadriplegic (Powergen) Powergen 4.2.2 Powergen 3 Profiling and Debugging Tools for High-performance Android Applications Stephen Jones, Product Line Manager, NVIDIA (sjones@nvidia.com) Android By The Numbers 1.3M Android activations per day Android activations

More information

Table of Contents. Adding Build Targets to the SDK 8 The Android Developer Tools (ADT) Plug-in for Eclipse 9

Table of Contents. Adding Build Targets to the SDK 8 The Android Developer Tools (ADT) Plug-in for Eclipse 9 SECOND EDITION Programming Android kjj *J} Zigurd Mednieks, Laird Dornin, G. Blake Meike, and Masumi Nakamura O'REILLY Beijing Cambridge Farnham Koln Sebastopol Tokyo Table of Contents Preface xiii Parti.

More information

Workshop on Android and Applications Development

Workshop on Android and Applications Development Workshop on Android and Applications Development Duration: 2 Days (8 hrs/day) Introduction: With over one billion devices activated, Android is an exciting space to make apps to help you communicate, organize,

More information

Fahim Uddin http://fahim.cooperativecorner.com email@fahim.cooperativecorner.com. 1. Java SDK

Fahim Uddin http://fahim.cooperativecorner.com email@fahim.cooperativecorner.com. 1. Java SDK PREPARING YOUR MACHINES WITH NECESSARY TOOLS FOR ANDROID DEVELOPMENT SEPTEMBER, 2012 Fahim Uddin http://fahim.cooperativecorner.com email@fahim.cooperativecorner.com Android SDK makes use of the Java SE

More information

Android Programming and Security

Android Programming and Security Android Programming and Security Dependable and Secure Systems Andrea Saracino andrea.saracino@iet.unipi.it Outlook (1) The Android Open Source Project Philosophy Players Outlook (2) Part I: Android System

More information

Game Design From Concepts To Implementation

Game Design From Concepts To Implementation Game Design From Concepts To Implementation Giacomo Cappellini - g.cappellini@mixelweb.it What I do I code for video games I code editor tools I code utilities for the production of games I code scripts

More information

Praktikum Entwicklung Mediensysteme (für Master)

Praktikum Entwicklung Mediensysteme (für Master) Praktikum Entwicklung Mediensysteme (für Master) An Introduction to Android An Introduction to Android What is Android? Installation Getting Started Anatomy of an Android Application Life Cycle of an Android

More information

Android Development: Part One

Android Development: Part One Android Development: Part One This workshop will introduce you to the nature of the Android development platform. We begin with an overview of the platform s development history and some discussion of

More information

Chapter 13: Program Development and Programming Languages

Chapter 13: Program Development and Programming Languages Understanding Computers Today and Tomorrow 12 th Edition Chapter 13: Program Development and Programming Languages Learning Objectives Understand the differences between structured programming, object-oriented

More information

Programming the Internet of Things

Programming the Internet of Things Programming the Internet of Things Why Devices Need APIs December 8, 2014 Greg Burns Chair of Technical Steering Committee AllSeen Alliance 2 December 2014 AllSeen Alliance 1 Mobile The largest technology

More information

An Introduction to Android. Huang Xuguang Database Lab. Inha University 2009.11.2 Email: xuguanghuang@yahoo.cn

An Introduction to Android. Huang Xuguang Database Lab. Inha University 2009.11.2 Email: xuguanghuang@yahoo.cn An Introduction to Android Huang Xuguang Database Lab. Inha University 2009.11.2 Email: xuguanghuang@yahoo.cn Outline Background What is Android? Development for Android Background Internet users and Mobile

More information

Our software strategy

Our software strategy Our software strategy Contents 1. Executive Summary 2. Architecture for differentiation and efficiency 3. Device platforms for all needs Mobile Computers Maemo Smartphones Symbian Mobile Phones Series

More information

Developing apps for mobile phones. by Scot C. Nelson

Developing apps for mobile phones. by Scot C. Nelson Developing apps for mobile phones by Scot C. Nelson Lecture outline: 1. 2. 3. 4. 5. 6. 7. 8. Concept development Outlining the app Design considerations and platforms Budget development Programming Graphic

More information

A Study on Android development kits and the Phone Gap Framework

A Study on Android development kits and the Phone Gap Framework International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 10, Issue 3 (March 2014), PP.18-22 A Study on Android development kits and the Phone

More information

Open Source Software Development within DLR. Andreas Schreiber

Open Source Software Development within DLR. Andreas Schreiber DLR.de Chart 1 Open Source Software Development within DLR Andreas Schreiber German Aerospace Center, Simulation and Software Technology, Berlin / Braunschweig / Cologne ADCSS 2014, ESA ESTEC October 28,

More information

Introduction (Apps and the Android platform)

Introduction (Apps and the Android platform) Introduction (Apps and the Android platform) CE881: Mobile and Social Application Programming Simon Lucas & Spyros Samothrakis January 13, 2015 1 / 38 1 2 3 4 2 / 38 Course Structure 10 weeks Each week:

More information

CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup. Emmanuel Agu

CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup. Emmanuel Agu CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup Emmanuel Agu What is Android? Android is world s leading mobile operating system Google: Owns Android, maintains it, extends

More information

OMX, Android, GStreamer How do I decide what to use? 15 July 2011

OMX, Android, GStreamer How do I decide what to use? 15 July 2011 OMX, Android, GStreamer How do I decide what to use? 15 July 2011 When to use which framework? Android (easiest) Customer wants a full featured media player with minimal trouble and no prior knowledge

More information

Programming with Android: SDK install and initial setup. Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna

Programming with Android: SDK install and initial setup. Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna Programming with Android: SDK install and initial setup Luca Bedogni Marco Di Felice Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna SDK and initial setup: Outline Ø Today: How

More information

ICAPRG601A Develop advanced mobile multi-touch applications

ICAPRG601A Develop advanced mobile multi-touch applications ICAPRG601A Develop advanced mobile multi-touch applications Release: 1 ICAPRG601A Develop advanced mobile multi-touch applications Modification History Release Release 1 Comments This Unit first released

More information

TEGRA X1 DEVELOPER TOOLS SEBASTIEN DOMINE, SR. DIRECTOR SW ENGINEERING

TEGRA X1 DEVELOPER TOOLS SEBASTIEN DOMINE, SR. DIRECTOR SW ENGINEERING TEGRA X1 DEVELOPER TOOLS SEBASTIEN DOMINE, SR. DIRECTOR SW ENGINEERING NVIDIA DEVELOPER TOOLS BUILD. DEBUG. PROFILE. C/C++ IDE INTEGRATION STANDALONE TOOLS HARDWARE SUPPORT CPU AND GPU DEBUGGING & PROFILING

More information

for Java developers Building Mobile Applications Introduction 1 Building Mobile Applications

for Java developers Building Mobile Applications Introduction 1 Building Mobile Applications Introduction Building Mobile Applications for Java developers Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise noted,

More information

Reminders. Lab opens from today. Many students want to use the extra I/O pins on

Reminders. Lab opens from today. Many students want to use the extra I/O pins on Reminders Lab opens from today Wednesday 4:00-5:30pm, Friday 1:00-2:30pm Location: MK228 Each student checks out one sensor mote for your Lab 1 The TA will be there to help your lab work Many students

More information

Integrating Mobile into Your Cross- Platform Strategy with Qt

Integrating Mobile into Your Cross- Platform Strategy with Qt Integrating Mobile into Your Cross- Platform Strategy with Qt Tuukka Ahoniemi Technical Product Marketing Manager tuukka.ahoniemi@theqtcompany.com Qt Developer Days 2014 Agenda Qt and Mobile Platforms

More information

ArcGIS Web Mapping. Sam Berg, esri sberg@esri.com

ArcGIS Web Mapping. Sam Berg, esri sberg@esri.com ArcGIS Web Mapping Sam Berg, esri sberg@esri.com Agenda ArcGIS and WebMaps The APIs ArcGIS for Flex Viewer ArcGIS for Silverlight Builder ArcGIS for Sharepoint ArcGIS Application Templates ArcGIS Runtime

More information

Building cross-platform Modern Apps: the Design perspective. Amit Bahree, Senior Director, Avanade @bahree, http://desigeek.com

Building cross-platform Modern Apps: the Design perspective. Amit Bahree, Senior Director, Avanade @bahree, http://desigeek.com Building cross-platform Modern Apps: the Design perspective Amit Bahree, Senior Director, Avanade @bahree, http://desigeek.com Agenda Mobile Platforms CoIT Development Options Xamarin Architecture Patterns

More information

Developing and deploying mobile apps

Developing and deploying mobile apps Developing and deploying mobile apps 1 Overview HTML5: write once, run anywhere for developing mobile applications 2 Native app alternative Android -- Java ios -- Objective-C Windows Mobile -- MS tools

More information

Cross-platform mobile development with Visual C++ 2015

Cross-platform mobile development with Visual C++ 2015 Cross-platform mobile development with Visual C++ 2015 Sasha Goldshtein @goldshtn CTO, Sela Group blog.sashag.net App Targeting Spectrum Developer pain exponential jump in complexity, but not in user experience

More information

Quantified Self: Analyzing the Big Data of our Daily Life. Andreas Schreiber <Andreas.Schreiber@dlr.de> PyData Berlin 2014

Quantified Self: Analyzing the Big Data of our Daily Life. Andreas Schreiber <Andreas.Schreiber@dlr.de> PyData Berlin 2014 DLR.de Chart 1 Quantified Self: Analyzing the Big Data of our Daily Life Andreas Schreiber PyData Berlin 2014 DLR.de Chart 2 Introduction Scientist, Head of department Co-Founder,

More information

Building Applications with ArcGIS Runtime SDK for ios Part II. Eric Ito and Scott Sirowy

Building Applications with ArcGIS Runtime SDK for ios Part II. Eric Ito and Scott Sirowy Building Applications with ArcGIS Runtime SDK for ios Part II Eric Ito and Scott Sirowy Building Applications with ArcGIS Runtime SDK for ios Part II Eric Ito and Scott Sirowy 2011 Dev Summit Dodgeball

More information

The MaXX Desktop. Workstation Environment. Revised Road Map Version 0.7. for Graphics Professionals

The MaXX Desktop. Workstation Environment. Revised Road Map Version 0.7. for Graphics Professionals The MaXX Desktop Workstation Environment for Graphics Professionals Revised Road Map Version 0.7 Document History Author Date Version Comments Eric Masson 01/11/2007 0.5 First Draft Eric Masson 18/11/2007

More information

Developing Android Apps for BlackBerry 10. JAM854 Mike Zhou- Developer Evangelist, APAC Nov 30, 2012

Developing Android Apps for BlackBerry 10. JAM854 Mike Zhou- Developer Evangelist, APAC Nov 30, 2012 Developing Android Apps for BlackBerry 10 JAM854 Mike Zhou- Developer Evangelist, APAC Nov 30, 2012 Overview What is the BlackBerry Runtime for Android Apps? Releases and Features New Features Demo Development

More information

Android Development. Lecture AD 0 Android SDK & Development Environment. Università degli Studi di Parma. Mobile Application Development

Android Development. Lecture AD 0 Android SDK & Development Environment. Università degli Studi di Parma. Mobile Application Development Android Development Lecture AD 0 Android SDK & Development Environment 2013/2014 Parma Università degli Studi di Parma Lecture Summary Android Module Overview The Android Platform Android Environment Setup

More information

Presenting Android Development in the CS Curriculum

Presenting Android Development in the CS Curriculum Presenting Android Development in the CS Curriculum Mao Zheng Hao Fan Department of Computer Science International School of Software University of Wisconsin-La Crosse Wuhan University La Crosse WI, 54601

More information

This Slide Left Blank NASA APPEL Driving towards PM 2.0? Dr. Terry Cooke-Davies Group Chairman Human Systems International Limited Human Systems International Limited 1987 2011 All Rights Reserved 1 Benchmarking

More information

Basic Trends of Modern Software Development

Basic Trends of Modern Software Development DITF LDI Lietišķo datorsistēmu programmatūras profesora grupa e-business Solutions Basic Trends of Modern Software Development Mobile Development Trends Need an App... 3 4 Popular Devices in Latvia

More information

Qt on Raspberry Pi. Jeff Tranter Integrated Computer Solutions (ICS) Qt Developer Days 2012. www.ics.com

Qt on Raspberry Pi. Jeff Tranter Integrated Computer Solutions (ICS) Qt Developer Days 2012. www.ics.com Qt on Raspberry Pi Jeff Tranter Integrated Computer Solutions (ICS) Qt Developer Days 2012 Agenda What is the Raspberry Pi? Raspberry Pi Foundation Hardware Software QtonPi Distribution QtonPi Device Program

More information

Android Architecture. Alexandra Harrison & Jake Saxton

Android Architecture. Alexandra Harrison & Jake Saxton Android Architecture Alexandra Harrison & Jake Saxton Overview History of Android Architecture Five Layers Linux Kernel Android Runtime Libraries Application Framework Applications Summary History 2003

More information

Mobile App Infrastructure for Cross-Platform Deployment (N11-38)

Mobile App Infrastructure for Cross-Platform Deployment (N11-38) Mobile App Infrastructure for Cross-Platform Deployment (N11-38) Contents Introduction... 2 Background... 2 Goals and objectives... 3 Technical approaches and frameworks... 4 Key outcomes... 5 Project

More information

Android in Action. Second Edition. Revised Edition of Unlocking Android MANNING. (74 w. long.) W. FRANK ABLESON CHRIS KING ROBI SEN.

Android in Action. Second Edition. Revised Edition of Unlocking Android MANNING. (74 w. long.) W. FRANK ABLESON CHRIS KING ROBI SEN. Android in Action Second Edition W. FRANK ABLESON ROBI SEN CHRIS KING Revised Edition of Unlocking Android II MANNING Greenwich (74 w. long.) contents preface xvii preface to the first edition xix acknowledgments

More information

Des Moines Area Community College

Des Moines Area Community College Des Moines Area Community College Course Information EFFECTIVE FL 2012-01 Acronym/Number MDT 210 Historical Ref Title Android App Development II Credit breakout 3 3 0 0 0 (credit lecture lab practicum

More information

Programming IoT Gateways With macchina.io

Programming IoT Gateways With macchina.io Programming IoT Gateways With macchina.io Günter Obiltschnig Applied Informatics Software Engineering GmbH Maria Elend 143 9182 Maria Elend Austria guenter.obiltschnig@appinf.com This article shows how

More information

Cross-Platform Phone Apps & Sites with jquery Mobile

Cross-Platform Phone Apps & Sites with jquery Mobile Cross-Platform Phone Apps & Sites with jquery Mobile Nick Landry, MVP Senior Product Manager Infragistics Nokia Developer Champion activenick@infragistics.com @ActiveNick www.activenick.net Who is ActiveNick?

More information