Making Use of All the Networks Around Us: a Case Study in Android

Total Page:16

File Type:pdf, Size:1020Kb

Making Use of All the Networks Around Us: a Case Study in Android Making Use of All the Networks Around Us: A Case Study in Android Kok-Kiong Yap Te-Yuan Huang Masayoshi Kobayashiy Yiannis Yiakoumis Nick McKeown Sachin Katti Guru Parulkar Stanford University NECy {yapkke,huangty,mkobaya1,yiannisy,nickm,skatti,parulkar}@stanford.edu ABSTRACT will continue to be frustrated with application performance Poor connectivity is common when we use wireless networks on their mobile computing devices. on the go. A natural way to tackle the problem is to take The problem is often attributed to a shortage of wireless advantage of the multiple network interfaces on our mobile capacity or spectrum. This is not entirely true. Today, if devices, and use all the networks around us. Using multiple we stand in the middle of a city, we can likely \see" multiple networks at a time makes makes possible faster connections, cellular and WiFi networks. But, frustratingly, this capacity seamless connectivity and potentially lower usage charges. and infrastructure is not available to us. Our contracts with The goal of this paper is to explore how to make use of all cellular companies restrict access to other networks; most the networks with today's technology. Specifically, we pro- private WiFi networks require authentication, and are effec- totyped a solution on an Android phone. Using our proto- tively inaccessible to us. Although we are often surrounded type, we demonstrate the benefits (and difficulties) of using by abundant wireless capacity, almost all is off-limits. This multiple networks at the same time. is not good for us, and it is not good for network owners: Their network might have lots of spare capacity, even though a paying customer is close-by. Categories and Subject Descriptors We believe users should be able to travel in a rich field of C.2.0 [Computer Systems Organization]: Computer- wireless networks with access to all wireless infrastructure Communication Networks|General around them, leading to a competitive market-place with lower-cost connectivity and broader coverage. In the ex- General Terms treme, if all barriers to fluidity can be removed, users could connect to multiple networks at the same time, opening up Design, Experimentation, Performance enormous capacity and coverage. The good news is that smart-phones will be armed with Keywords multiple radios capable of connecting to several networks at the same time. Whereas today's phones commonly have Mobile Internet, Open vSwitch, Android four or five radios (e.g. 3G, 4G, WiFi, Bluetooth), in fu- ture they will have more. Shrinking geometries and energy- 1. INTRODUCTION efficient circuit design will lead to mobile devices with more Poor connectivity is common when using wireless net- radios/antennas; a mobile device will talk to multiple APs at works on the go. Connectivity comes and goes, through- the same time for improved capacity, coverage and seamless put varies, latencies can be extremely unpredictable, and handover. failures are frequent. Industry reports that demand is grow- If a smart-phone can take advantage of multiple wireless ing faster than wireless capacity, and the wireless crunch networks at the same time, then the user can experience: will continue for some time to come [2, 10]. Yet users ex- Seamless connectivity: by using the best current net- pect to run increasingly rich and demanding applications work, and allowing the client to choose which network to on their smart-phones, such as video streaming, anywhere- connect to dynamically, anytime access to their personal files, and online gaming; Faster connections: by stitching together flows over mul- all of which depend on connectivity to the cloud over un- tiple networks, predictable wireless networks. Given the mismatch between Lower usage charges: by choosing to use the most cost- user expectations and wireless network characteristics, users effective network that meets the application needs, Lower energy: by using the network with the current low- est energy-usage per byte. Permission to make digital or hard copies of all or part of this work for In our vision, intelligent and autonomous mobile devices personal or classroom use is granted without fee provided that copies are will hunt the vicinity to find the best radio networks, and not made or distributed for profit or commercial advantage and that copies will choose which one(s) to connect to so as to best meet the bear this notice and the full citation on the first page. To copy otherwise, to user's needs. Key to our vision is the notion that control republish, to post on servers or to redistribute to lists, requires prior specific rests with the client (the user and the smart-phone): The permission and/or a fee. CellNet’12, August 13, 2012, Helsinki, Finland. network and the mobile client software will provide informa- Copyright 2012 ACM 978-1-4503-1475-6/12/08 ...$10.00. tion about the presence, performance and price of different 19 networks; the client and the applications decide which one(s) to use. Beyond barriers due to business reasons, there are technical challenges. Our vision requires much more than just multiple radios and multiple networks|it requires that the mobile client (as well as the applications and user) can take advantage of them. Today's clients are ill-equipped to do so, having grown up in an era of TCP connections bound to a single physi- cal network connection. This leads to several well-known shortcomings: (1) An ongoing connection oriented flow| like TCP|cannot easily be handed over to a new interface, without re-establishing state; (2) If multiple network inter- faces are available, an application cannot take advantage of them to get higher throughput; at best it can use the fastest connection available; (3) A user cannot easily and dynami- cally choose interfaces at fine granularity so as to minimize loss, delay, power consumption, or usage charges. Figure 1: System diagram illustrating the main fea- The three limitations are not just consequences of TCP. tures of our prototype They are manifestations of the way the network stack is implemented in the operating system of the mobile device today. Therefore, as a step towards our bigger vision, we Next, we need to spread traffic from one application over want to understand what changes are needed in the mo- multiple interfaces. The application sends traffic using one bile device networking stack, to overcome these three limi- IP source address; the networking stack takes care of spread- tations. In this paper, we describe how we refactored and ing the traffic over several interfaces, each with its own IP then modified the networking stack on Android and Linux address. We do this using a virtual Ethernet interface to devices to be able to use multiple network interfaces simul- connect the application, with its local IP address, to a spe- taneously, and then we measure the performance of several cial gateway inside the Linux kernel. The gateway stitches experiments where several network interfaces are used. multiple interfaces together, without the application know- Our first prototype, reported here, is purely host-based. ing. Essentially, the gateway is a traffic load-balancer that The sending host decides which interfaces to use, and then demultiplexes flows using Open vSwitch (see below), with divides outgoing traffic over multiple interfaces. In some appropriate changes made to the routing table and ARP cases we assume the receiver is also equipped with the same tables. In this way, the application flow is decoupled from networking stack, so it can reconstitute the original flow. the IP addresses on each interface, which allows the set of However, in this paper we assume the rest of the network interfaces to change dynamically as connectivity comes and infrastructure is unchanged. We plan to explore the benefits goes. We further illustrate this setup using our experiment of coordination between the end host and the infrastructure described in section 3.1. in future work. Android is based on a minimal Linux kernel which is miss- ing several tools and kernel modules we need (e.g. the kernel module for virtual Ethernet interfaces). We added the mod- 2. SYSTEM DESCRIPTION ules and cross-compiled common utilities such as ifconfig, We will now describe how we modified the Android and route and ip. Linux operating system to allow a mobile device to use mul- tiple interfaces. For our prototype, we had four high-level 2.1.2 Open vSwitch (OVS) requirements: (1) it should run on commercially available Open vSwitch (OVS) replaces the bridging code in Linux,1 smartphone devices and laptops, (2) it should work with and lets us dynamically change how each flow is routed. unmodified existing applications, (3) it should connect to OVS has an OpenFlow interface and therefore we can use existing production WiFi and cellular networks, and (4) <match,action> flow-table entries to easily route, re-route wherever possible, it should reuse existing well-supported and handover existing connections. software components. We run OVS in kernel space, and ported it to Android by patching and and cross-compiling its kernel module and 2.1 Prototype user-space control programs using Android Native Develop- Our prototype consists of the following components shown ment Kit (NDK) for the ARM or OMAP processors.2 in Fig. 1: 2.1.3 Control Plane 2.1.1 Android/Linux We control how flows are routed and re-routed using a The first problem to solve is that, by default, Android only small custom-built control plane, that interfaces to OVS us- allows one network interface to be active at a time|clearly ing the OpenFlow protocol. In our prototype, the control no good for us. Android chooses which interface to use ac- plane is on the mobile device; but in principle the control cording to a preference order: If the device is connected to a WiFi network, Android automatically disconnects from 1OVS was recently upstreamed to Linux kernel 3.3 [6].
Recommended publications
  • Download Rom Motorola Defy Mini Xt320
    Download rom motorola defy mini xt320 CLICK TO DOWNLOAD 09/04/ · ROM Motorola DEFY MINI XT – ROM Android ROM Official: TNBST_4_RPD_flex_LATAM_RTL_Brazil – renuzap.podarokideal.ru ROM For Brazil (for other countries ask me) Backup and Restore Defy Mini IMEI and NV Data. Preparations: •Install Motorola USB driver (Use forum serach button) •Install RSD Lite (Use forum serach /5(10). 09/06/ · Motorola Defy Mini XT Firmware Download In this post, you will find the direct link to download Motorola Defy Mini XT Stock ROM (firmware, flash file). The Firmware package contains Firmware, Driver, Flash Tool, and How-to Flash Manual. Motorola Defy Mini XT Stock ROM How To Flash Motorola Defy Mini XT First, you need to download and extract the Motorola Defy Mini XT stock firmware package on Computer. After extracting the zip package, you will get the Firmware File, Flash Tools, Drivers, and How-to Flash Guide. 30/04/ · Motorola Defy Mini XT Stock Firmware ROM (Flash File) Find Motorola Defy Mini XT Flash File, Flash Tool, USB Driver and How-to Flash Manual. The official link to download Motorola Defy Mini XT Stock Firmware ROM (flash file) on your Computer. Firmware comes in a zip package, which contains are below. 14/07/ · How to update your MOTOROLA Defy Mini(XT) With this guide you will be able to find, download and install all necessary updating files for your MOTOROLA Defy Mini(XT). Hope you can get satisfied with the new device update, enjoy the last Android version and don’t forget to look for new updates frequently. Firstly, you have what you came for: the updates.
    [Show full text]
  • Securing Android Devices
    Securing Android Devices Sun City Computer Club Seminar Series May 2021 Revision 1 To view or download a MP4 file of this seminar With audio • Audio Recording of this seminar • Use the link above to access MP4 audio recording Where are Android Devices? • Smart Phones • Smart Tablets • Smart TVs • E-Book Readers • Game consoles • Music players • Home phone machines • Video streamers – Fire, Chromecast, Why Android devices? • Cutting edge technology – Google • User Friendly • User modifications Android Software Development Kit (SDK) Open Source • Huge volume of applications • Google, Samsung, LG, Sony, Huawei, Motorola, Acer, Xiaomi, … • 2003 • CUSTOMIZABLE My Choices • Convenience vs Privacy • Helpful <-> Harmful • Smart devices know more about us than we do Android “flavors” flavours • Android versions and their names • Android 1.5: Android Cupcake • Android 1.6: Android Donut • Android 2.0: Android Eclair • Android 2.2: Android Froyo • Android 2.3: Android Gingerbread • Android 3.0: Android Honeycomb • Android 4.0: Android Ice Cream Sandwich • Android 4.1 to 4.3.1: Android Jelly Bean • Android 4.4 to 4.4.4: Android KitKat • Android 5.0 to 5.1.1: Android Lollipop • Android 6.0 to 6.0.1: Android Marshmallow • Android 7.0 to 7.1: Android Nougat • Android 8.0 to Android 8.1: Android Oreo • Android 9.0: Android Pie • Android 10 Many potential combinations • Each manufacturer “tunes” the Android release to suit #1 Keep up with updates Android Operating System Android firmware (Very vendor specific) Android Applications (Apps) Android settings
    [Show full text]
  • การแฟลช ROM เครื่อง Samsung Galaxy Tab ให้เป็น Android 2.3.3 Gingerbread (Cyanogenmod 7 Beta หรือ Cm7beta)
    การแฟลช ROM เครื่อง Samsung Galaxy Tab ให้เป็น Android 2.3.3 Gingerbread (CyanogenMod 7 Beta หรือ cm7beta) การเตรียมการเบื้องต้น 1) มั่นใจว่าได้ชาร์จแบตเตอรี่ของ Samsung Galaxy Tab ให้เต็ม 100% แล้ว 2) ดาวน์โหลดโปรแกรม Heimdall จากหน้าเวบนี้ -> Heimdall หรือดาวน์โหลดตรงจากลิงค์ https://github.com/downloads/Benjamin-Dobell/Heimdall/heimdall-suite-1.1.1- win32.zip และแตกไฟล์ Zip ที่ได้เตรียมพร้อมไว้ (หมายเหตุ: โปรแกรมนี้จะรันได้นั้นมัน ต้องการ Microsoft Visual C++ 2010 Redistributable Package (x86) หรือไฟล์ MSVCP100.dll ซึ่งหากในเครื่องของคุณยังไม่มีก็จะรันไม่ได้ เกิดข้อผิดพลาดขึ้น ก็ให้ไป ดาวน์โหลดมาติดตั้งซะก่อน ได้ที่ http://www.microsoft.com/downloads/en/details.aspx?familyid=A7B7A05E-6DE6- 4D3A-A423-37BF0912DB84&displaylang=en ) 3) ดาวน์โหลด CM7Gingerbread ROM for Galaxy Tab มา และแตกไฟล์ Zip ที่ได้เตรียม พร้อมไว้ 4) แน่ใจว่าไดร์ฟเวอร์สำาหรับเชื่อมต่อ Samsung Galaxy Tab กับเครื่อง PC ทางพอร์ท USB (เพื่อใช้งานโปรแกรม ADB) ได้ถูกติดตั้งไว้พร้อมแล้ว หากว่ายังไม่พร้อม ให้ทำา “การติด ตั้งไดร์ฟเวอร์ USB” ก่อน ตามในข้อหัวถัดไป หากพร้อมแล้ว ก็กระโดดข้ามหัวข้อถัดไป ได้เลย ไปสู่ “การแฟลช ROM” การติดตั้งไดร์ฟเวอร์ USB 1) ปิดเครื่อง Samsung Galaxy Tab ก่อน แล้วเปิดเข้าสู่โหมด Recovery (Download) ด้วย การกด 3 ปุ่มพร้อมกันคือ “Volume Down” (ปุ่มลดโวลุ่มเสียง) + “Home” + “Power” ค้า งไว้สักครู่หนึ่ง (2-3 วินาที) จะได้หน้าจอที่ขึ้นคำาว่า Downloading… ดังภาพ การแฟลช ROM เครื่อง Samsung Galaxy Tab ให้เป็น Android 2.3.3 Gingerbread (CyanogenMod 7 Beta หรือ cm7beta) โดย [email protected] เวบ http://androidth.wordpress.com 2) ต่อสาย USB เข้ากับ Samsung
    [Show full text]
  • Android 2.3 Gingerbread Expected in the Next Few Days 9 November 2010, by John Messina
    Android 2.3 Gingerbread expected in the next few days 9 November 2010, by John Messina will start with Nexus One. The release of Gingerbread doesn't mean that more powerful hardware is needed, as new features or optimizations can benefit users with existing handsets. Some of the rumored and/or expected changes include: &#149; Big noticeable change to the OS is that the graphics and icons have been refreshed giving the application icons a more uniform appearance. &#149; Large translucent icon place holders that will eventually be small for app menu. Customizable icon colors that are very vibrant and It has been rumored that developers may receive really changes the whole app UI. The refreshed UI Android 2.3 OTA update as early as November 11 for also introduces motion scrolling to longer menus the Nexus One handset. and adds animations. &#149; SIP support to the native Google Voice application for Android that will make it possible to (PhysOrg.com) -- While Google hasn't made any receive calls to your Google Voice number via Wi- official announcements on the release date for Fi or 3G. This functionality may be only for Android 2.3 several clues online over the weekend Gingerbread and future releases. point to an imminent release of Gingerbread. This may have to do with the timing of iOS 4.2 which is &#149; The default media player would support set to release this week. more codecs by default at the OS Level and Google Music Service should be unveiled along Alvaro Fuentes Vasquez, a leader at the OHA with Android 2.3 as well as a separate market place organization that oversees development of for games are also expected with the new OS Google's Android platform, sent the follow tweet release.
    [Show full text]
  • Android 3.0 by Saurabh Goel
    By: Saurabh Goel What is Android? Android History Android Architecture Android Version History Android 3.0 (HONEYCOMB) ◦ Platform Technologies ◦ Built-in apps ◦ New features New User Features New Developer Features API Differences ◦ Upgrading or Developing new app for Android 3.0 Conclusion ―Android is not a specification, or a distribution in the traditional Linux sense. It’s not a collection of replaceable components. Android is a chunk of software that you port to a device.‖ By: Dan Morrill (on Android compatibility) ― Android OS as a software stack. Each layer of the stack groups together several programs that support specific operating system functions.‖ By: Google Android Inc. founded, October 2003 Android Inc. acquired by Google, August 2005 Open Handset Alliance, November 2007 ◦ Develop open standards for mobile devices Android Market, August 2008 ◦ online software store by Google for Android devices Licensing, October 2008 ◦ Available as free software/open source license First Commercially available phone running Android OS- HTC Dream, October 2008 Versions of Android, (Sep 2008(FROYO) to Feb 2011(Gingerbread, Honeycomb)) Underneath everything is a reasonably up-to- date Linux kernel (2.6.35 Android Gingerbread), with some power-saving extensions. Cannot be called as Linux DISTRO– no support for libraries and shells and editors and GUIs and programming frameworks. Includes drivers for Camera, display, Flash memory, Binder(IPC), Wi-Fi, keypad, Audio, Power management. Contains whole bunch of basic runtime essentials. All the standard APIs that are used to create Android apps are defined in terms of Dalvik classes and interfaces and objects and methods. some of them are thin layers of Dalvik code over native implementations.
    [Show full text]
  • Sistem Pengontrol Lampu Dan Kipas Angin Dalam Ruangan Dengan Menggunakan Operating System Android Media Bluetooth (Hardware)
    SISTEM PENGONTROL LAMPU DAN KIPAS ANGIN DALAM RUANGAN DENGAN MENGGUNAKAN OPERATING SYSTEM ANDROID MEDIA BLUETOOTH (HARDWARE) LAPORAN AKHIR Disusun Untuk Memenuhi Syarat Menyelesaikan Pendidikan Diploma III Pada Jurusan Teknik Elektro Program Studi Teknik Telekomunikasi Politeknik Negeri Sriwijaya OLEH : M. KHAIRUMUDIN 0612 3032 0273 POLITEKNIK NEGERI SRIWIJAYA PALEMBANG 2015 SISTEM PENGONTROL LAMPU DAN KIPAS ANGIN DALAM RUANGAN DENGAN MENGGUNAKAN OPERATING SYSTEM ANDROID MEDIA BLUETOOTH (HARDWARE) LAPORAN AKHIR Disusun Untuk Memenuhi Syarat Menyelesaikan Pendidikan Diploma III Pada Jurusan Teknik Elektro Program Studi Teknik Telekomunikasi Politeknik Negeri Sriwijaya OLEH : M. KHAIRUMUDIN 0612 3033 0273 Menyetujui, Pembimbing 1 Pembimbing 2 Ir. Ibnu Ziad, M.T. Rosita Febriani, S.T., M.Kom. NIP. 19600516 199003 1 001 NIP. 19790201 200312 2 003 Mengetahui, Ketua Jurusan Ketua Program Studi Teknik Elektro Teknik Telekomunikasi D-III Ir. Ali Nurdin, M.T. Ciksadan, S.T., M.Kom. NIP. 19621207 199103 1 001 NIP. 19680907 199303 1 003 ii PERNYATAAN KEASLIAN Saya yang bertanda tangan di bawah ini : Nama : M. Khairumudin NIM : 061230330273 Program Studi : Teknik Telekomunikasi Jurusan : Teknik Elektro Menyatakan dengan sesungguhnya bahwa Laporan Akhir yang telah saya buat ini dengan judul “ Pengendalian Lampu dan kipas angin Dengan Sistem Operasi Android Berbasis Bluetooth ” adalah benar hasil karya saya sendiri dan bukan merupakan duplikasi, serta tidak mengutip sebagian atau seluruhnya dari karya orang lain, kecuali yang telah disebutkan sumbernya. Palembang, Juni 2015 Penulis M. Khairumudin iii MOTTO “ Tugas kita bukanlah untuk berhasil. Tugas kita adalah untuk mencoba, karena didalam mencoba itulah kita menemukan dan belajar membangun kesempatan untuk berhasil “ -Mario Teguh- “ Orang-orang hebat di bidang apapun bukan baru bekerja karena mereka terinspirasi, namun mereka menjadi terinspirasi karena mereka lebih suka bekerja.
    [Show full text]
  • Where to Download Android Kitkat Os Kitkat 4.4
    where to download android kitkat os KitKat 4.4. A more polished design, improved performance and new features. Just say “OK Google” You don’t need to touch the screen to get things done. When on your home screen* or in Google Now, just say “OK Google” to launch voice search, send a text, get directions or even play a song. A work of art. While listening to music on your device, or while projecting movies to Chromecast, you’ll see beautiful full-screen album and movie art when your device is locked. You can play, pause or seek to a specific moment. Immerse yourself. The book that you're reading, the game that you're playing or the movie that you're watching – now all of these take centre stage with the new immersive mode, which automatically hides everything except what you really want to see. Just swipe the edge of the screen to bring back your status bar and navigation buttons. Faster multi-tasking. Android 4.4 takes system performance to an all-time high by optimising memory and improving your touchscreen so that it responds faster and more accurately than ever before. This means that you can listen to music while browsing the web, or race down the highway with the latest hit game, all without a hitch. OneDrive does not work on Android KitKat OS after phone changed primary live account and phone number. OneDrive APP does not work on Android KitKat OS after phone changed primary live account and phone number. Phone is a Moto E4 with Android version 7.1.1.
    [Show full text]
  • Multifunctional Remote Controlled Robot Using Android Application
    International Journal of Science and Research (IJSR) ISSN (Online): 2319-7064 Index Copernicus Value (2013): 6.14 | Impact Factor (2015): 6.391 Multifunctional Remote Controlled Robot Using Android Application T. A. Mithu1, T. S. Reddy2 Jawaharlal Nehru Technological University Hyderabad Abstract: In this paper bidirectional remote controlled communication with robot is established using two android phones, one as transmitter and another as receiver. An embedded system is implemented with the Robot to execute the commands generated from Transmitter Android App and accordingly control the mechanical movements of Robot. Receiver Android Phone is mounted on Robot which establishes communication with Transmitter Phone and performs advanced tasks (i.e. sending messages, capturing photos, server uploads etc.) using Receiver Android App. Keywords: Transmitter, Receiver, Android, Robot, Microcontroller, Motor, Bluetooth, Camera, SMS, GPS, Server 1. Introduction 2) Transmitter App: An Android App is developed which has the features like searching for Bluetooth devices to 1.1 Research Objective connect with robot, establish connection with robot and camera device that mounted on robot. The main objective of this research is to develop effective 3) Robot control unit of Transmitter App can send signals android applications to implement an embedded system with or command to control mechanical movement of Robot. Microcontroller by using which an efficient bidirectional 4) Camera control unit of Transmitter App can send communication with Robot can be established. commands to camera device on robot to perform different tasks like gathering location information, 1.2 Proposed System capturing photos, saving into SD card, uploading into server and sending informative SMS to the transmitting The proposed system uses the Bluetooth, GSM & GPRS/Wi- end.
    [Show full text]
  • Android Development Based on Linux Rohan Veer1, Rushikesh Patil2, Abhishek Mhatre3, Prof
    Vol-4 Issue-5 2018 IJARIIE-ISSN(O)-2395-4396 Android Development based on Linux Rohan Veer1, Rushikesh Patil2, Abhishek Mhatre3, Prof. Shobhana Gaikwad4 1 Student, Computer Technology, Bharati Vidyapeeth Institute of Technology, Maharashtra, India 2 Student, Computer Technology, Bharati Vidyapeeth Institute of Technology, Maharashtra, India 3 Student, Computer Technology, Bharati Vidyapeeth Institute of Technology, Maharashtra, India 4 Professor, Computer Technology, Bharati Vidyapeeth Institute of Technology, Maharashtra, India ABSTRACT Android software development is used to produce apps for mobile devices that includes an OS (Operating System) and various applications. It can be used to make video applications, music applications, games, editing software etc. The android operating system was showcased by Google after which android development started. The Google initially released the android operating system on 23th September 2008.Google hired some developers and started building applications which started app development and fast production of android applications. The applications and operating system for android are written in Java as the android is based on Linux so it was difficult at the start to write programs for android. But as the technical skills were improving to debug an application so it became easier for developers to solve the issues and debug the errors in the applications. The first android operating system was able to perform some basic task like messaging, calling, downloading some specific applications etc. After that Google released various versions of android operating system with newly added features and design. With every new version of android speed of device and user experience were getting much better in day to day life.
    [Show full text]
  • DM3730/AM3703 Android Gingerbread 2.3.4 BSP User Guide BSP Documentation
    DM3730/AM3703 Android Gingerbread 2.3.4 BSP User Guide BSP Documentation Logic PD // Products Published: April 2012 Last revised: August 2014 This document contains valuable proprietary and confidential information and the attached file contains source code, ideas, and techniques that are owned by Logic PD, Inc. (collectively “Logic PD’s Proprietary Information”). Logic PD’s Proprietary Information may not be used by or disclosed to any third party except under written license from Logic PD, Inc. Logic PD, Inc. makes no representation or warranties of any nature or kind regarding Logic PD’s Proprietary Information or any products offered by Logic PD, Inc. Logic PD’s Proprietary Information is disclosed herein pursuant and subject to the terms and conditions of a duly executed license or agreement to purchase or lease equipment. The only warranties made by Logic PD, Inc., if any, with respect to any products described in this document are set forth in such license or agreement. Logic PD, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special or consequential damages. Logic PD, Inc. may have patents, patent applications, trademarks, copyrights, trade secrets, or other intellectual property rights pertaining to Logic PD’s Proprietary Information and products described in this document (collectively “Logic PD’s Intellectual Property”). Except as expressly provided in any written license or agreement from Logic PD, Inc., this document and the information contained therein does not create any license to Logic PD’s Intellectual Property. The Information contained herein is subject to change without notice.
    [Show full text]
  • X10 Mini Pro Stock Firmware
    X10 mini pro stock firmware click here to download xda-developers Legacy & Low Activity Devices Sony Ericsson XPERIA X10 Mini XPERIA X10 Mini Q&A, Help & Troubleshooting [Q] need stock rom link for x10 mini pro by www.doorway.rurth. XPERIA X10 Mini Pro Android Development. need stock rom for x10 mini pro, does any one got it????.[FIRMWARE] A for U20a. Download Stock Firmware Android Eclair A FTF Rom For Sony Ericsson XPERIA X10 Mini Pro. ABOUT XPERIA X10 & FLASH GUIDE. Sony Ericsson XPERIA X10 Mini professional is among the first smartphone with Android working process from Sony Ericsson. It's compact variation of flagship and it's. Now bring new life to your old Sony Ericsson x10 Mini Pro with. official rom upgrade from v to v Solved: Hello, I installed cynogen mod custom rom on xperia mini pro, but forgot to take backup or original ROM. Now since sony has official released. Solved: Downgrade or revert from a Custom ROM Xperia X10 Mini/Pro Thanx XDA forum and yet again Bin4ry Get the ftf files here. HOW TO OFFICIAL UPGRADE FIRMWARE VERSION WITH DUAL TOUCH SCREEN AND MANY NEW FEATURES. Now bring new life to your old Sony Ericsson x10 Mini Pro U20i but one of the major draw back with update version was that the phone had limitation on how many app's you can. 1. install the newest Android for your phone (for Sony Ericsson XPERIA X10 Mini Pro it is currently the A firmware) 2. install the newest Android for your phone (for Sony Ericsson XPERIA X10 Mini Pro it is currently the A firmware) 3.
    [Show full text]
  • Android Application Development from a to Z.Pdf
    Android Mobile Application Development from A to Z ® an Developer eBook Contents… Android Mobile Application Development from A to Z This content was adapted from Internet.com’s Developer.com website. Contributors: Shane Conder, Lauren Darcey and Keith Vance. 2 2 The Android Mobile Development Platform: A Reference Guide 6 Top 10 Features for Developers in Android 2.2 6 9 9 Building Your First PHP for Android Application 13 Building Killer Android Tablet Apps: Design and Development Tips 13 Android Mobile Application Development from A to Z The Android Mobile Development Platform: A Reference Guide By Shane Conder and Lauren Darcey ndroid, an open source mobile platform Android applications can be developed on a with no upfront fees, has emerged as a new variety of operating systems, including: mobile development option that offers many A • Windows XP (32-bit), Vista (32-bit or 64-bit), and benefits over competing platforms. But is it Windows 7 (32-bit and 64-bit) right for your project? In this reference guide, you’ll learn all the nitty-gritty details you need to know to evaluate • Mac OS X 10.5.8 or later (x86 only) Android, including the tools and technologies for developing • Linux (tested on Linux Ubuntu on the platform as well as the 8.04 LTS, Hardy Heron) required costs. Armed with this information, you can make an The Android SDK and informed decision as to whether development tools are freely or not Android is the right fit available on the Android for your particular organization developer site, where developers or development project.
    [Show full text]