Free Essay

Android Development

In: Computers and Technology

Submitted By Marcodolo
Words 1448
Pages 6
Post Internship Thank You Letter
Dear Barbara,
It has been a pleasure working for you and being a part of the “pit crew” team this summer. Since the very beginning of the internship I felt very welcomed by you and the whole team. The amount of knowledge and skills I have acquired this summer are innumerable. It is hard to believe that these 10 weeks have flown by so fast.
I am very appreciative for our weekly one on one meeting. I enjoyed being able to hear feedback from you about my performance which has made me more aware as a person. I have learned the importance of presentation and proper documentation from you. I also must say your sense of professionalism has rubbed off on me. You are a great leader and you have fostered an environment where team members can communicate with you whenever they have questions or issues.
I’m sure I could on and on about this experience but I will end it here. I simply want to say thank you for this opportunity. Thank you for allowing me to be a part of your team. Thank you for allowing me to contribute to the team’s success. Thank you for this opportunity to expand my knowledge. Thank you.
Best regards,

Emerging Technology
Introduction:
Vanguard has been in the financial investment industry since May 1, 1975 with its first location in Valley Forge, Pennsylvania. Since then Vanguard has made a presence in North Carolina, Arizona, and international locations such as the Netherlands, France, Canada, England, Switzerland and Australia. As of December 31, 2011 Vanguard manages approximately $1.7 trillion in U.S. mutual funds and has proven to be a fierce competitor among its competition. In order to maintain this competitive edge, Vanguard could benefit greatly from taking advantage of virtual reality.
Company background:
Vanguard is an American investment management company that is mostly known for its low-cost index funds, mutual funds, and exchange-traded funds. Vanguard offers advice and other services to personal investors, institutional investors, and financial advisors. Vanguard’s first fund, the Vanguard Wellington Fund, opened for business in 1929 just before the stock market crash. The Vanguard Wellington fund is today the nation’s oldest balanced fund. In 1958 Vanguards oldest stock fund, the Windsor Fund, opened to investors. Finally, in 1975 Vanguard was officially founded with John C. Bogle. Soon after, Vanguard established itself as a company where the mutual funds own the management company. Since being founded Vanguard has pledged “ To take a stand for all investors, treat them fairly, and give them the best chance for investment success”.
Virtual Reality Defined:
Virtual Reality Vendors:
Competitive Analysis:
Workplace Enhancement:
Internship Web Article
I had the pleasure of working at Vanguard in Charlotte, NC. Vanguard is one of the world’s largest investment management companies and they have a major need for IT professionals. I participated in the IT College to Corporate Program. The College to Corporate program is a 10 week internship that is filled with real life experience and many opportunities for personal and career development.
Within the IT division of Vanguard, I worked as a user interface developer in the Institutional Systems (IS) department. The IS department builds and supports high value business technology solutions for institutional retirement plan services. My team worked on the plan sponsor bridge application. The Vanguard Plan Sponsor Bridge is a secure, web-based management and reporting tool for institutional retirement plan sponsors. This "Bridge" helps them better manage their retirement plan(s). Plan sponsors can perform common tasks online, which helps simplify and streamline plan administration.
I worked on the plan sponsor back log items and custom reporting features. The plan sponsor bridge application is undergoing major enhancements and I was responsible for identifying any unused resources that existed in the application. These unused resources were impeding the application from being fully tested and created a lot of inefficiencies within the team. At the end of my internship I was able to identify over 200 resources that were unused and slowing production down.
There have been a few key college classes that have been beneficial along the way. The computer applications in business, software design, and web based support systems courses have been helpful. I used many excel techniques to document my analyses and sort information. From the software design course I used some programming concepts we learned to develop in Java. The knowledge that I obtained from the web based support systems course was helpful when I parsed HTML and CSS files because I understood how everything worked.
I left the internship with a lot more knowledge than I came in with. I learned a lot of new programming techniques and became familiar with new technologies such as java server faces, facelets, java server pages, YUI, and the spring framework. I learned more about Java and got some exposure to Perl, and Mainframes. Outside of the technical realm, I picked up some other skills. I became well versed in the agile methodology of project management. I attended several informational sessions about different IT roles within the organization. I became a better communicator and learned about proper business protocol. I also attended some diversity trainings that will help with career and personal development.
This internship has given me insight into the roles of developers, business systems analysts, user interactions designers, systems testers, and project managers. This exposure has helped me realize that in the future I want to become a senior user interface interactions designer. Having the opportunity to speak to 3 UI designers at the company has confirmed that this is a career I want to pursue. Overall, this has been a rewarding experience and a nice introduction to the “real world”.
Java Traverse import java.io.BufferedReader; import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.InputStreamReader; import java.applet.*;
/*
* Traverses a directory and looks through all files to see if they contain a specific String
*/
public
String spcs =
String name =
String path = aFile.getAbsolutePath();
String newPath = path.replace( spcs +=
{
class DirectoryReader {static int spc_count=-1;static void Process(File aFile) {spc_count++;"";"";"\\","\\\\");for (int i = 0; i < spc_count; i++)"";if(aFile.isFile())//System.out.println(aFile.getName());
FileInputStream fstream = try{new FileInputStream(newPath); // Get the object of DataInputStream for server pages
DataInputStream in =
BufferedReader br =
String strLine;
}
new DataInputStream(fstream);new BufferedReader(new InputStreamReader(in)); while ((strLine = br.readLine()) != null) {//Close the input stream in.close(); } catch (Exception e){//Catch exception if any
System.
}
}
err.println("Error: " + e.getMessage());else if (aFile.isDirectory()) {//System.out.println(spcs + "[DIR] " + aFile.getName());
File[] listOfFiles = aFile.listFiles();
Process(listOfFiles[i]); }
System.
}
}
} if(listOfFiles!=null) {for (int i = 0; i < listOfFiles.length; i++)else {out.println(spcs + " [ACCESS DENIED]");spc_count--; public static void main(String[] args) {//String nam = "C:\\BridgeBatch12.5.0";
String nam =
File aFile =
Process(aFile); } }
"C:\\Documents and Settings\\UNBI\\My Documents\\Bridge Enhancements Internship\\Bridge Code";new File(nam);
Java Diff import java.io.BufferedReader; import java.io.DataInputStream; import java.io.FileInputStream; import java.io.InputStreamReader; import java.util.*; public class SimpleDiff {
/**
* Places each line of a text file into an array list and accepts the text document name as a parameter * @param textFile * @return */ public static ArrayList<String> textToArray(String textFile) { //Places each line of a text file with the name textFile into an array list ArrayList<String> textLines = new ArrayList<String>(); try{ FileInputStream fstream = new FileInputStream(textFile+".txt"); //Get the object of DataInputStream for server pages DataInputStream in = new DataInputStream(fstream); BufferedReader br = new BufferedReader(new InputStreamReader(in)); String strLine; //Read server pages line by line and assign this value to strLine while ((strLine = br.readLine()) != null) { textLines.add(strLine.trim()); } //Close the input stream in.close(); } catch (Exception e){//Catch exception if any System.err.println("Error: " + e.getMessage()); } return textLines; } /** * Returns the differences of two text files. * * @param listA * @param listB */ public static void diffArrayLists (ArrayList<String> listA, ArrayList<String> listB) { System.out.println("--------------------------------------------"); System.out.println("Not in criteria B"); System.out.println("--------------------------------------------"); //Returns lines of listA which are not found in listB for (String s: listA) { if (!listB.contains(s)) System.out.println(""+s); } System.out.println("--------------------------------------------"); System.out.println("Not in criteria A"); System.out.println("--------------------------------------------"); //Returns lines of listB which are not found in listA for (String s: listB) { if (!listA.contains(s)) System.out.println(""+s); } } public static void main(String args[]) { String x;

ArrayList<String> criteriaA = new ArrayList<String>(); criteriaA = textToArray("CriteriaA"); ArrayList<String> criteriaB = new ArrayList<String>(); criteriaB = textToArray("CriteriaB"); diffArrayLists(criteriaA,criteriaB); }
}

Similar Documents

Free Essay

Android Development for Beginners

...1.Android - Overview What is Android? Android is an open source and Linux-based Operating System for mobile devices such as smartphones and tablet computers. Android was developed by the Open Handset Alliance, led by Google, and other companies. Android offers a unified approach to application development for mobile devices which means developers need only develop for Android, and their applications should be able to run on different devices powered by Android. The first beta version of the Android Software Development Kit (SDK) was released by Google in 2007 where as the first commercial version, Android 1.0, was released in September 2008. On June 27, 2012, at the Google I/O conference, Google announced the next Android version, 4.1 Jelly Bean. Jelly Bean is an incremental update, with the primary aim of improving the user interface, both in terms of functionality and performance. The source code for Android is available under free and open source software licenses. Google publishes most of the code under the Apache License version 2.0 and the rest, Linux kernel changes, under the GNU General Public License version 2. Why Android ? Features of Android Android is a powerful operating system competing with Apple 4GS and supports great features. Few of them are listed below: Feature | Description | Beautiful UI | Android OS basic screen provides a beautiful and intuitive user interface. | Connectivity | GSM/EDGE, IDEN, CDMA, EV-DO, UMTS, Bluetooth, Wi-Fi, LTE...

Words: 798 - Pages: 4

Free Essay

Android Based Webstatic Server

...Project Report On ANDROID BASED STATIC WEBSERVER BY CONTENTS TITLE ABSTRACT INTRODUCTION…………………………………………………. 1 Purpose……………………………………………………..………… 1.1 Scope…………………………………………………..…….……….. 1.2 Definitions, Acroynms, Abbrivations……………………. 1.3 Overview……………………..………………………………………. 1.4 SYSTEM ANALYSIS……………………………………… 3 Software Requirements Specification…..………………. 3.1 Hardware Requirements……………………………………….. 3.1.1 Software Requirements………………………………………… 3.1.2 IMPLEMENTATION……………………………………… 4 Modules……………………………………………………………….. 4.1 Accounts…………………………………………………………..4.1.1 Transactions………………………………………………………….. 4.1.2 DESIGN………………..…………………………….……… 5 UML Diagrams………………………………………………………… 5.1 Class Diagram………………………………………………………… 5.1.1 Usecase Diagram….……………………………………………….. 5.1.2 Sequence Diagram….……………………………………………….. 5.1.3 RESULT FOR IMPLEMENTATION…………………… 6 Output Screens………………………………………………………. 6.1 SYSTEM TESTING………………………………………….7 Types of Testing………………………………………………………. 7.1 TESTCASES…………………………………………………..8 CONCLUSION………………………………………………..9 ANDROID BASED STATIC WEBSERVER ABSTRACT Android is software platform and operating system for mobile devices. Being an open-source, it is based on the Linux kernel. It was developed by Google and later the Open Handset Alliance (OHA). It allows writing managed code in the Java language. Due to Android here is the possibility...

Words: 9090 - Pages: 37

Free Essay

Android

...Android vs iPhone Junyao Zhang April 12, 2010 This is a complete analysis and comparison between Android and iPhone OS. The rest of this report is organized as follows. Section ?? outlines the system architecture, history and detail management configuration. Section ?? discusses the iPhone system. In Section ??, a comparison between these two systems is presented. 1 Android Android, originally meaning “robot”, is a mobile operating system using a modified version of the Linux kernel. It was initially developed by Android Inc., a firm later purchased by Google,[?]and lately by the Open Handset Alliance[?]. It allows developers to write managed code in the Java language, controlling the device via Google-developed Java libraries.[8] It empolys the software stack architecture, as shown in Figure 1. • Android relies on Linux version 2.6 for core system services such as security, memory management, process management, network stack, and driver model. The kernel also acts as an abstraction layer between the hardware and the rest of the software stack. It is implemented by programming language C. • The middleware level includes Runtime and Libraries. The Runtime includes core libraries, providing most of the functionality available in the core libraries of the Java programming language, and Dalvik virtual machine which allows every Android application runs in its own process. The Libraries is used by various components of the Android system, such as Media Libraries, 3D libraries...

Words: 6786 - Pages: 28

Premium Essay

Emergency System

...Chapter 1 INTRODUCTION Android based emergency alert application. Background of the study Communication is the best way to connect to people, it is important to communicate well to have a better understanding of one another. It is the exchange of ideas, messages or information by speech, signals or writing. Decisions often dependent upon the quality and quantity of the information received. If the information that has been transmitted is poor or incomplete the decision will often be incorrect. Over the millennia, human used various ways to communicate to one another in space and even in time, wood and stones, parchment and paper, electricity and electro-magnetic waves. As new media for communication have been created, the old ones have become specialized(Rosengren,2000) although media have change drastically as centuries passed by, it is still not complete and new form of communication is still being created and develop day by day. One of the ways to communicate is with the use of mobile device. smartphones is now a major source of information device which can be seen in almost everyone’s hand in the world. With increasing innovation Mobile device can process, analyse and store data. Resulting into big efficiency rather than using computer. People will soon be able to access and consume information anytime, anywhere, from any device. As the most widely used computing device, a cell phone or a new generation smart phone, will likely play a significant role in future mobile...

Words: 1948 - Pages: 8

Free Essay

Wp7 for Android

...Microsoft6/6/2011Rev 1.0 | | Windows Phone 7 Guide for Android Application Developers | | About this Document 4 Target Audience 4 Conventions Used in this Document 4 Chapter 1: Introducing Windows Phone 7 Platform to Android Application Developers 5 The Developer Tools 5 Windows Phone 7 Architecture 5 Comparing the Programming Stack of Windows Phone 7 with Android 7 Summary 11 Related Resources 11 Chapter 2: User Interface Guidelines 12 Designing the Application Interface 13 Application User Interface Design 14 Comparing Windows Phone 7 and Android Navigation 18 Windows Phone 7 Frame and Page Structure 19 Application Templates 21 Summary 21 Related Resources 21 Chapter 3: The Developer and Designer Tools 23 A Comparison of Android and Windows Phone 7 Tools 23 Development Life Cycle and Windows Phone 7 Developer Tools 24 The UI Design Tools 26 Building Applications 33 Debugging 34 Summary 38 Chapter 4: C# programming 39 Managed Programming 40 A Comparison between C# Features and Java Classes 41 A Comparison of Important Class Libraries 51 The New features of C# 54 Comparing API Documentation Tools 58 NDoc 58 NDocs vs. Javadoc 61 Summary 61 Related Resources 62 Chapter 5: A Comparison of Application Life Cycles in Windows Phone 7 and Android 63 Multitasking in Android and Windows Phone 7 63 Tombstoning of Applications in Windows Phone 7 64 Life Cycle of a Windows Phone 7 Application...

Words: 19181 - Pages: 77

Free Essay

Phcare

...College Biñan In Partial Fulfillment Of the Requirements for the Degree of Bachelor of Science of Computer Engineering Biñan, Laguna December, 2014 Table of Contents Title Page i List of Figures ii List of Tables iii CHAPTER I I. INTRODUCTION 6 Background of the Study 6 Conceptual Framework 8 Statement of the Problem 9 Objectives of the Study 10 Significance of the Study 11 Scope and Limitation 11 Definition of Terms 12 Conceptual Definition 12 Operational Definition 14 CHAPTER II II. REVIEW OF RELATED LITERATURES AND STUDIES 15 Related Literatures 15 Mobile Health Monitoring 15 Biomedical Sensors 16 Android 15 Wireless Technology 22 Interfacing UART 30 Arduino 33 Related Studies 37 Foreign Studies 37 Local Studies 39 Synthesis 40 CHAPTER III III. RESEARCH METHODOLOGY 41 Research Design 42 Respondents of the Study 43 Sampling Design and Techniques 44 Research Instruments 45 Sources of Data 45 Data Gathering Procedures 45 Statistical Treatment 46 System Design 47 System Overview 47 System Block Diagram 49 System Schematic Diagram 52 Material Listing and Specification 56 Hardware Component Design 62 Hardware Program Design 68 Software Design 70 Implementation 75 Project Timeline...

Words: 12900 - Pages: 52

Free Essay

Team E Human Androids

...Emerging Technology Human Androids Semantha Sebastian Theresa Keefer Hazel Marie Roxas Juan Martinez Amilcar Vasquez Shasta Taguran DeVry University LAS432 Professor: David Scoma April 13, 2014 ABSTRACT (200-word summary of the entire paper) This research discusses the emerging technology of the human android. Different types of robots are discussed and, how these devices come together with computer technology. It begins with a description of this innovative modern day science and discusses its applications. To this end, it explores how robots and androids assist in both domestic and workplace activities. Next, our paper goes into detail on the historical development of human androids which goes back into the into the Renaissance time period. In addition, current development is briefly mentioned which includes economic support from the U.S President, further research, and considering an ongoing project. The collection of models are also noted followed by innovation changes that have been implemented up to this date. Last of all, the legal issues and concerns are described under different cases while government manufacturing has become significant. Next we will delve into the environmental implications androids and robots have on our society such as ensuring a safe society with the additions of these man-made creations and the possible threats they bring. This leads us into the moral and ethical implications...

Words: 15352 - Pages: 62

Premium Essay

Android

...Introduction……………………………………………………………….3 2. Literature review…………………………………………………………..4 3. Architecture……………………………………………………………...5-6 4. Version of android OS…………………………………………………. 7-9 5. Feature version……………………………………………………………10 6. Conclusion…………………………………………………………………11 INTRODUCTION Android is a software stack for mobile devices that includes an operating system middleware and mobile applications .It is LINUX based operating system developed by google. It is specially designed for touch screen mobiles like smart phones and computer tablets. It was developed by google and later on open handset alliance. Handset Alliance, a consortium of 34hardware, software and telecom companies devoted to advancing open standards for mobile devices. When released in 2008, most of The unveiling of the Android platform on 5 November 2007 was announced with the founding of the Open the Android platform will be made available under the Apache free-software and open-source license. It allows developers to write managed code in a Java-like language that utilizes Google-developed Java libraries, but does not support programs developed in native code. Applications   written   in   C   and   other   languages can   be compiled to ARM native code and run, but this development path   isn’t   officially   supported by Google. Android   is available   as   open   source. Google   threw open   the   entire...

Words: 2440 - Pages: 10

Free Essay

Android

...Android by 2012 A study on present and future of Google's Android Dot Com Infoway - Position Paper- www.dotcominfoway.com Android by 2012 A study on present and future of Google's Android S.No 1 2 3 4 5 6 7 8 9 10 11 12 13 Contents Executive Summary The Android Tale Why Google Android Android: Breaking the 'Walled Gardens' What's so different in Android Advantages of Dalvik Virtual machines Android: A promising haven for app developers and OEMs? Market Predictions Final Comments About Dot Com Infoway Sources Interesting Android links Glossary Dot Com Infoway - Position Paper- www.dotcominfoway.com Executive Summary: This paper attempts to study the present conditions of Android OS and unveils the predicted future market possibilities for Android, based on results from several research firms, using current market statistics and popularity among developers and end-users. All the flimflams and excitement about the costlier iphones and Blackberrys are vanishing, after the arrival of the most anticipated, open source mobile operating system, the Google Android, which is fated to turn the industry upside down. Despite the growth and popularity for iPhones and Blackberrys, it is predicted that, Android will make a history in sales and on acquiring the market share, slicing down the markets of both Symbians and iPhones. This paper will elaborately examine the predictions about the future of Android phones, considering the present facts and reasons. The Android Tale:...

Words: 2607 - Pages: 11

Premium Essay

Htc: a Smartphone Pioneer from Taiwan

...Smartphone Pioneer From Taiwan This report is consistent with our signed Academic Integrity Form on file with the instructor Trevor Burns, Nancy Kong, Amir Kalantar, Colin Brown, Nav Thandi, Adam Jackson Team #1 September 23rd Critical Issues HTC must address the following issues in order to build its global market share: * Branding Strategies * Research and Development Department * Second Mover Strategies * Balance of Microsoft and Android * Loss of support from Shareholders The issues stated above indicate how HTC has conducted inefficient marketing strategies. HTC’s marketing budgets grew by 78.75% in 2010 from 2009, this has helped their global market share grow by approximately 129%. In addition, the variation of operating systems HTC provides to must be addressed as precedent from competing companies have proven success in exclusivity of utilizing one OS. The various networks offered from the HTC devices has pushed them to also open multiple research and development centers which has substantially increased their selling and marketing costs by 139.43%. The research and development centers has pushed HTC to become an innovator, by releasing the newest technologies; their decision to reject the ‘me-too’ strategy has created huge opportunity costs for them. Each dollars of equity is supported by $2548 of assets, which generated a correlating $1440 in sales, which generated a net profit margin of 14.37% Analysis Branding Strategies Aside from the...

Words: 2025 - Pages: 9

Free Essay

Mr Atto

...Card Playing Android Game Submitted to: Sir M Wasif Nisar Sir Kashif Ayyub Submitted by: Arslan Tariq SP11-BS(CS)-024 Furqan Jalil SP11-BS(CS)-003 COMSATS Institute of Information Technology Wah Campus Table Of contents 1. Introduction ……………………………………………………………3page 2. Product Scope ………………………………………………………….4page 3. Objectives of Project …………………………………………………..5page 4. Product Functions ……………………………………………………..6page 5. Functional Requirements ……………………………………………..7page 6. Interface Requirements ……………………………………………….8page 7. Non-functional Requirements ………………………………………..9page 8. Limitations and Constraints ………………………………………..10page 9. System features ……………………………………………………...10page 10. Appendix ……………………………………………………………..11page 11. References ……………………………………………………………12page Introduction We have proposed to make a card playing android application on the base of Bluetooth or Wifi where 2 3 or 4 users play that game through WIFI or Bluetooth communication by making this application or software multiplayer will be able to play. Basically it can be used for playing cards and help you can play cards with your friends with help of this application anywhere and anytime without any delay; when you are out with your friends and your friends seems bored so you can play...

Words: 2091 - Pages: 9

Premium Essay

Mobile Application Security

...rather than from behind corporate firewalls and intrusion-protection systems. Security of mobile devices focuses on controlling access through the use of device locks and hardware data encryption. While this may be sufficient for individual users, it is insufficient for defense needs. Many documented examples exist of hacking of the device lock, as well as defeats of the hardware-level encryption. Once the device is unlocked, there is generally unfettered access to all apps and their associated data. Military applications require additional application-level access controls to provide data security. Unfortunately, there are gaps in the application-level security model of the two predominant mobile operating systems: iOS from Apple and Google Android. Our ongoing research1 looks to address these gaps by developing innovative approaches for fine-grained data protection and access control, taking into account mobile device usage patterns, device characteristics, and usability. Mobile Applications Security Threat Vectors Many threat vectors for infecting personal computers arise from social-engineering attacks that bypass anti-virus defenses. Similar techniques are used in the smartphone and tablet world by...

Words: 4009 - Pages: 17

Premium Essay

Black

...Appcelerator / IDC Q4 2011 Mobile Developer Report Summary Appcelerator and IDC surveyed 2,160 Appcelerator Titanium developers from November 2-3, 2011 on perceptions surrounding mobile OS trends and priorities. Findings reveal that Amazon’s new Kindle Fire edged Samsung Galaxy Tab as the leading Android Tablet in North America, on par with interest for the iPad prior to its launch in April 2010, and second only to the Galaxy Tab globally with developers. Microsoft’s Windows Phone 7 also decisively moved ahead of RIM’s BlackBerry OS to become the clear number three mobile OS behind iOS and Android. Appcelerator and IDC also continued their research into how companies are making the move from the web to mobile. This quarter, the report dives deep into understanding the priorities companies are making with their mobile strategy and how mobile is fundamentally transforming customer relationships. The Rise of Amazon, Microsoft, and Samsung … and An Improved Outlook for Nokia As the mobile industry advances, contenders are finding success by securing new footholds and partnerships to compete against Apple’s dominance. Amazon announced the Kindle Fire, a smaller, cheaper Android-based tablet that leverages its large content library while Microsoft’s Window’s Phone 7 is building strong European developer enthusiasm thanks to its Nokia partnership. Developers and businesses gave high marks to these strong moves, which contrast sharply against BlackBerry OS, BlackBerry’s QNX-based...

Words: 3538 - Pages: 15

Premium Essay

Htc Report

...Director of Board and Chairman of HTC Foundation, and President and CEO respectively. Today HTC boasts with its popular products as Touch Diamond, Hero, HD2, HD Legend, and Desire, and has been ranked by Business Week as the second best performing technology company in Asia in 2007, and third place in Business Week Global listing in 2006. Since 2007, they have regularly introduced many critically-acclaimed mobile devices under their own brand, and our portfolio includes Smartphone’s and tablets powered by the Android and Windows Phone operating systems. HTC Corporation designs and manufactures handheld wireless telecommunications devices, otherwise known as Smartphone’s, based on Google's Android and Microsoft's Windows Mobile operating systems. (HTC is a hardware platform development partner with Microsoft.) Originally a contract electronics manufacturer, the company now aggressively markets phones under its own brand. The HTC Dream was the first cell phone to feature the Android software operating system. Other devices include the Desire, Explorer, Rhyme, and Sensation. HTC's phones are marketed by wireless communications carriers including T-Mobile USA. A focus on product design with performance, endurance, craftsmanship, and intuitive tools and interfaces, ensures an elegant experience in a beautiful, minimalist package. HTC contributes a variety of innovations that include an amazing camera — cameras that rival leading point-and-shoot models and HD video that turns mobile screens...

Words: 281 - Pages: 2

Free Essay

Andriod Technology

...Feature on Android Technology Abstract Android is a name that was introduced by Google Inc. It is a very popular technology in mobile phones these days, as it is an operating system which is capable of running multiple application programs. It is a complete revolution in the mobile technology industry after iPhones. This essay is a feature on Android technology. Android is a revolutionary name which is an open-source software assemble of an operating system, middleware and key applications for mobile devices. In 2005, Google Inc. purchased the initial developer of the software; Android Inc and developed it. Android’s mobile operating system is based on a modified version of the Linux kernel. (Lee P.) The introduction of the Android distribution on 5 November 2007 was announced with the beginning of the Open Handset Alliance which was a consortium of 80 hardware, software, and telecom companies devoted to advancing open standards for mobile devices. Google released most of the Android code under the Apache License, a free software and open source license. The Android Open Source Project (AOSP) is tasked with the maintenance and further development of Android. (Mark S.) Google proclaimed the Android Market on 28 August 2008, and it was made available to users on 22 October 2008. Support for paid applications was accessible from 13 February 2009 for US and UK developers, with additional support from 29 countries on 30 September 2010. In February 2011, the Android Market was...

Words: 571 - Pages: 3