Você está na página 1de 15

Android (operating system) Android is a Linux-based operating system designed primarily for touchscreen mobile devices such as smartphones

and tablet computers. Android was unveiled in 2007 along with the founding of the Open Handset Alliance: a consortium of hardware, software, and telecommunication companies devoted to advancing open standards for mobile devices.[9] The first Android-powered phone was sold in October 2008.[10] Android is open source and Google releases the code under the Apache License.[11] This open source code and permissive licensing allows the software to be freely modified and distributed by device manufacturers, wireless carriers and enthusiast developers. Additionally, Android has a large community of developers writing applications ("apps") that extend the functionality of devices, written primarily in a customized version of the Java programming language.[12] In October 2012, there were approximately 700,000 apps available for Android, and the estimated number of applications downloaded from Google Play, Android's primary app store, was 25 billion.[13][14] These factors have allowed Android to become the world's most widely used smartphone platform,[15] overtaking Symbian in the fourth quarter of 2010,[16] and the software of choice for technology companies who require a low-cost, customizable, lightweight operating system for high tech devices without developing one from scratch.[17] As a result, despite being primarily designed for phones and tablets, it has seen additional applications on televisions, games consoles and other electronics. Android's open nature has further encouraged a large community of developers and enthusiasts to use the open source code as a foundation for community-driven projects, which add new features for advanced users[18] or bring Android to devices which were officially released running other operating systems. Android had a worldwide smartphone market share of 75% during the third quarter of 2012,[19] with 500 million devices activated in total and 1.3 million activations per day.[20][21] The operating system's success has made it a target for patent litigation as part of the so-called "smartphone wars" between technology companies.[22] Interface Android's user interface is based on direct manipulation,[38] using touch inputs that loosely correspond to real-world actions, like swiping, tapping, pinching and reverse pinching to manipulate on-screen objects.[38] The response to user input is designed to be immediate and provides a fluid touch interface, often using the vibration capabilities of the device to provide haptic feedback to the user. Internal hardware such as accelerometers, gyroscopes and proximity sensors are used by some applications to respond to additional user actions, for example adjusting the screen from portrait to landscape depending on how the device is oriented, or allowing the user to steer a vehicle in a racing game by rotating the device, simulating control of a steering wheel.[39] Android devices boot to the homescreen, the primary navigation and information point on the device, which is similar to the desktop found on PCs. Android homescreens are typically made up of app icons and widgets; app icons launch the associated app, whereas widgets display live, auto-updating content such as the weather forecast, the user's email inbox, or a news ticker directly on the homescreen.[40] A homescreen may be made up of several pages that the user can swipe back and forth between, though Android's homescreen interface is heavily customisable, allowing the user to adjust the look and feel of the device to their tastes. Third party apps available on Google Play and other app stores can extensively re-theme the homescreen, and even mimic the look of other operating systems, such as Windows

Phone.[41] Most manufacturers, and some wireless carriers, customise the look and feel of their Android devices to differentiate themselves from the competition. Present along the top of the screen is a status bar, showing information about the device and its connectivity. This status bar can be "pulled" down to reveal a notification screen where apps display important information or updates, such as a newly received email or SMS text, in a way that does not immediately interrupt or inconvenience the user.[42] In early versions of Android these notifications could be tapped to open the relevant app, but recent updates have provided enhanced functionality, such as the ability to call a number back directly from the missed call notification without having to open the dialer app first.[43] Notifications are persistent until read or dismissed by the user. Applications

Play Store on the Galaxy Nexus. See also: Android software development and Google Play Android has a growing selection of third party applications, which can be acquired by users either through an app store such as Google Play or the Amazon Appstore, or by downloading and installing the application's APK file from a third-party site.[44] The Play Store application allows users to browse, download and update apps published by Google and third-party developers, and is pre-installed on devices that comply with Google's compatibility requirements.[45] The app filters the list of available applications to those that are compatible with the user's device, and developers may restrict their applications to particular carriers or countries for business reasons.[46] Purchases of unwanted applications can be refunded within 15 minutes of the time of download,[47] and some carriers offer direct carrier billing for Google Play application purchases, where the cost of the application is added to the user's monthly bill.[48] As of September 2012, there were more than 675,000 apps available for Android, and the estimated number of applications downloaded from the Play Store was 25 billion.[49]

Applications are developed in the Java language using the Android software development kit (SDK). The SDK includes a comprehensive set of development tools,[50] including a debugger, software libraries, a handset emulator based on QEMU, documentation, sample code, and tutorials. The officially supported integrated development environment (IDE) is Eclipse using the Android Development Tools (ADT) plugin. Other development tools are available, including a Native Development Kit for applications or extensions in C or C++, Google App Inventor, a visual environment for novice programmers, and various cross platform mobile web applications frameworks. In order to work around limitations on reaching Google services due to Internet censorship in the People's Republic of China, Android devices sold in the PRC are generally customized to use state approved services instead.[51]

Development Android is developed in private by Google until the latest changes and updates are ready to be released, at which point the source code is made available publicly.[52] This source code will only run without modification on select devices, usually the Nexus series of devices.[53] With many devices, there are proprietary components which have to be provided by the manufacturer, in order for Android to work.[54] Linux

Architecture diagram Android consists of a kernel based on Linux kernel version 2.6 and, from Android 4.0 Ice Cream Sandwich onwards, version 3.x, with middleware, libraries and APIs written in C, and application software running on an application framework which includes Java-compatible libraries based on Apache Harmony. Android uses the Dalvik virtual machine with just-in-time compilation to run Dalvik 'dex-code' (Dalvik Executable), which is usually translated from Java bytecode.[55] The main hardware platform for Android is the ARM architecture. There is support for x86 from the Android x86 project,[6] and Google TV uses a special x86 version of Android. Android's linux kernel has further architecture changes by Google outside the typical Linux kernel development cycle.[56] Android does not have a native X Window System by default nor does it support the full set of standard GNU libraries, and this makes it difficult to port existing Linux applications or libraries to Android.[57] Support for simple C and SDL applications is possible by injection of a small Java shim and usage of the JNI[58] like, for example, in the Jagged Alliance 2 port for Android.[59]

Certain features that Google contributed back to the Linux kernel, notably a power management feature called wakelocks, were rejected by mainline kernel developers, partly because kernel maintainers felt that Google did not show any intent to maintain their own code.[60][61][62] Google announced in April 2010 that they would hire two employees to work with the Linux kernel community,[63] but Greg Kroah-Hartman, the current Linux kernel maintainer for the stable branch, said in December 2010 that he was concerned that Google was no longer trying to get their code changes included in mainstream Linux.[61] Some Google Android developers hinted that "the Android team was getting fed up with the process," because they were a small team and had more urgent work to do on Android.[64] In August 2011, Linus Torvalds said that "eventually Android and Linux would come back to a common kernel, but it will probably not be for four to five years".[65] In December 2011, Greg Kroah-Hartman announced the start of the Android Mainlining Project, which aims to put some Android drivers, patches and features back into the Linux kernel, starting in Linux 3.3.[66] Linux included the autosleep and wakelocks capabilities in the 3.5 kernel, after many previous attempts at merger. The interfaces are the same but the upstream Linux implementation allows for two different suspend modes: to memory (the traditional suspend that Android uses), and to disk (hibernate, as it is known on the desktop).[67] The merge will be complete starting with Kernel 3.8, Google has opened a public code repository that contains their experimental work to re-base Android off Kernel 3.8.[68] The flash storage on Android devices is split into several partitions, such as "/system" for the operating system itself and "/data" for user data and app installations.[69] In contrast to desktop Linux distributions, Android device owners are not given root access to the operating system and sensitive partitions such as /system are read-only. However, root access can be obtained by exploiting security flaws in Android, which is used frequently by the open source community to enhance the capabilities of their devices,[70] but also by malicious parties to install viruses and malware.[71] Whether or not Android counts as a Linux distribution is a widely debated topic, with the Linux Foundation[72] and Chris DiBona,[73] Google's open source chief, in favour. Others, such as linuxmagazine.com disagree, noting the lack of support for many GNU tools, including glibc, in Android.[74] Memory management Since Android devices are usually battery-powered, Android is designed to manage memory (RAM) to keep power consumption at a minimum, in contrast to desktop operating systems which generally assume they are connected to unlimited mains electricity. When an Android app is no longer in use, the system will automatically suspend it in memory - while the app is still technically "open," suspended apps consume no resources (e.g. battery power or processing power) and sit idly in the background until needed again. This has the dual benefit of increasing the general responsiveness of Android devices, since apps don't need to be closed and reopened from scratch each time, but also ensuring background apps don't waste power needlessly.[75] Android manages the apps stored in memory automatically: when memory is low, the system will begin killing apps and processes that have been inactive for a while, in reverse order since they were last used (i.e. oldest first). This process is designed to be invisible to the user, such that users do not need to manage memory or the killing of apps themselves.[76] However, confusion over Android memory management has resulted in third-party task killers becoming popular on the Google Play store; these third-party task killers are generally regarded as doing more harm than good.[77]

Update schedule

From left to right: HTC Dream (G1), Nexus One, Nexus S, Galaxy Nexus See also: Android version history Google provides major updates, incremental in nature, to Android every six to nine months, which most devices are capable of receiving over the air.[78] The latest major update is Android 4.2 Jelly Bean.[79] Compared to its chief rival mobile operating system, namely iOS, Android updates are typically slow to reach actual devices. For devices not under the Nexus brand, updates often arrive months from the time the given version is officially released.[80] This is caused partly due to the extensive variation in hardware of Android devices, to which each update must be specifically tailored, as the official Google source code only runs on their flagship Nexus devices. Porting Android to specific hardware is a time- and resourceconsuming process for device manufacturers, who prioritize their newest devices and often leave older ones behind.[80] Hence, older smartphones are frequently not updated if the manufacturer decides it is not worth their time, regardless of whether the phone is capable of running the update. This problem is compounded when manufacturers customize Android with their own interface and apps, which must be reapplied to each new release. Additional delays can be introduced by wireless carriers who, after receiving updates from manufacturers, further customize and brand Android to their needs and conduct extensive testing on their networks before sending the update out to users.[80] The lack of after-sale support from manufacturers and carriers has been widely criticised by consumer groups and the technology media.[81][82] Some commentators have noted that the industry has a financial incentive not to update their devices, as the lack of updates for existing devices fuels the purchase of newer ones,[83] an attitude described as "insulting".[82] The Guardian has complained that the complicated method of distribution for updates is only complicated because manufacturers and carriers have designed it that way.[82] In 2011, Google partnered with a number of industry players to announce an "Android Update Alliance", pledging to deliver timely updates for every device for 18 months after its release. [84] As of 2012, this alliance has never been mentioned since.[80] Open source community Android has an active community of developers and enthusiasts who use the Android source code to develop and distribute their own modified versions of the operating system.[85] These communitydeveloped releases often bring new features and updates to devices faster than through the official manufacturer/carrier channels, albeit without as extensive testing or quality assurance; [18] provide continued support for older devices that no longer receive official updates; or bring Android to devices that were officially released running other operating systems, such as the HP Touchpad. Community releases often come pre-rooted and contain modifications unsuitable for non-technical users, such as the

ability to overclock or over/undervolt the device's processor.[86] CyanogenMod is the most widely used community firmware,[87] and acts as a foundation for numerous others. Historically, device manufacturers and mobile carriers have typically been unsupportive of third-party firmware development. Manufacturers express concern about improper functioning of devices running unofficial software and the support costs resulting from this.[88] Moreover, modified firmwares such as CyanogenMod sometimes offer features, such as tethering, for which carriers would otherwise charge a premium. As a result, technical obstacles including locked bootloaders and restricted access to root permissions are common in many devices. However, as community-developed software has grown more popular, and following a statement by the Librarian of Congress in the United States that permits the "jailbreaking" of mobile devices,[89] manufacturers and carriers have softened their position regarding third party development, with some, including HTC,[88] Motorola,[90] Samsung[91][92] and Sony,[93] providing support and encouraging development. As a result of this, over time the need to circumvent hardware restrictions to install unofficial firmware has lessened as an increasing number of devices are shipped with unlocked or unlockable bootloaders, similar to the Nexus series of phones, although usually requiring that users waive their devices' warranties to do so.[88] However, despite manufacturer acceptance, some carriers in the US still require that phones are locked down.[94] The unlocking and "hackability" of smartphones and tablets remains a source of tension between the community and industry, with the community arguing that unofficial development is increasingly important given the failure of industry to provide timely updates and/or continued support to their devices.[94] Security and privacy

App permissions in the Play Store See also: Mobile security

Android applications run in a sandbox, an isolated area of the system that does not have access to the rest of the system's resources, unless access permissions are explicitly granted by the user when the application is installed. Before installing an application, the Play Store displays all required permissions: a game may need to enable vibration or save data to an SD card, for example, but should not need to read SMS messages or access the phonebook. After reviewing these permissions, the user can choose to accept or refuse them, installing the application only if they accept.[95] The sandboxing and permissions system lessens the impact of vulnerabilities and bugs in applications, but developer confusion and limited documentation has resulted in applications routinely requesting unnecessary permissions, reducing its effectiveness.[96] Several security firms, such as Lookout Mobile Security,[97] AVG Technologies,[98] and McAfee,[99] have released antivirus software for Android devices. This software is ineffective as sandboxing also applies to such applications, limiting their ability to scan the deeper system for threats.[100] Research from security company Trend Micro lists premium service abuse as the most common type of Android malware, where text messages are sent from infected phones to premium-rate telephone numbers without the consent or even knowledge of the user.[101] Other malware displays unwanted and intrusive adverts on the device, or sends personal information to unauthorised third parties.[101] Security threats on Android are reportedly growing exponentially; however, Google engineers have argued that the malware and virus threat on Android is being exaggerated by security companies for commercial reasons,[102][103] and have accused the security industry of playing on fears to sell virus protection software to users. [102] Google maintains that dangerous malware is actually extremely rare,[103] and a survey conducted by FSecure showed that only 0.5% of Android malware reported had come from the Google Play store.[104] Google currently uses their Google Bouncer malware scanner to watch over and scan the Google Play store apps.[105] It is intended to flag up suspicious apps and warn users of any potential issues with an application before they download it.[106] Android version 4.2 Jelly Bean was released in 2012 with enhanced security features, including a malware scanner built into the system, which works in combination with Google Play but can scan apps installed from third party sources as well, and an alert system which notifies the user when an app tries to send a premium-rate text message, blocking the message unless the user explicitly authorises it.[107] Android smartphones have the ability to report the location of Wi-Fi access points, encountered as phone users move around, to build databases containing the physical locations of hundreds of millions of such access points. These databases form electronic maps to locate smartphones, allowing them to run apps like Foursquare, Google Latitude, Facebook Places, and to deliver location-based ads.[108] Third party monitoring software such as TaintDroid,[109] an academic research-funded project, can, in some cases, detect when personal information is being sent from applications to remote servers.[110] The open source nature of Android allows security contractors to take existing devices and adapt them for highly secure uses. For example Samsung has worked with General Dynamics through their Open Kernel Labs acquisition to rebuild Jellybean on top of their hardened microvisor for the "Knox" project.[111][112] Licensing The source code for Android is available under free and open source software licenses. Google publishes most of the code (including network and telephony stacks)[113] under the Apache License version 2.0,[114][115] and the rest, Linux kernel changes, under the GNU General Public License version 2. The Open Handset Alliance develops the changes to the Linux kernel, in public, with source code publicly available at all times. The rest of Android is developed in private by Google, with source code released

publicly when a new version is released. Typically Google collaborates with a hardware manufacturer to produce a 'flagship' device (part of the Google Nexus series) featuring the new version of Android, then makes the source code available after that device has been released.[116] In early 2011, Google chose to temporarily withhold the Android source code to the tablet-only 3.0 Honeycomb release. The reason, according to Andy Rubin in an official Android blog post, was because Honeycomb was rushed for production of the Motorola Xoom,[117] and they did not want third parties creating a "really bad user experience" by attempting to put onto smartphones a version of Android intended for tablets.[118] The source code was once again made available in November 2011 with the release of Android 4.0.[119] Even though the software is open-source, device manufacturers cannot use Google's Android trademark unless Google certifies that the device complies with their Compatibility Definition Document (CDD). Devices must also meet this definition to be eligible to license Google's closed-source applications, including Google Play.[120] As Android is not completely released under a GPL compatible license, e.g. Google's code is under the Apache license,[7] and also because Google Play allows proprietary software, Richard Stallman and the Free Software Foundation have been critical of Android and have recommended the usage of alternatives such as Replicant.[121][122] Reception Android received a lukewarm reaction when it was unveiled in 2007. Although analysts were impressed with the respected technology companies that had partnered with Google to form the Open Handset Alliance, it was unclear whether mobile phone manufacturers would be willing to replace their existing operating systems with Android.[123] The idea of an open source, Linux-based development platform sparked interest,[124] but there were additional worries about Android facing strong competition from established players in the smartphone market, such as Nokia and Microsoft, and rival Linux mobile operating systems that were in development.[125] These established players were skeptical: Nokia was quoted as saying "we don't see this as a threat,"[126] and a member of Microsoft's Windows Mobile team stated "I don't understand the impact that they are going to have."[126] Since then Android has grown to become the most widely used smartphone operating system[17] and "one of the fastest mobile experiences available."[127] Reviewers have highlighted the open source nature of the operating system as one of its defining strengths, allowing companies such as Amazon (Kindle Fire), Barnes & Noble (Nook), Ouya, Baidu, and others to fork the software and release hardware running their own customised version of Android. As a result, it has been described by technology website Ars Technica as "practically the default operating system for launching new hardware" for companies without their own mobile platforms.[17] This openness and flexibility is also present at the level of the end user: Android allows extensive customisation of devices by their owners and apps are freely available from non-Google app stores and third party websites. These have been cited as among the main advantages of Android phones over others.[17][128] Android has been criticized due to the lack of after-sale support from manufacturers and carriers, in comparison to Apple's iOS .[1],.[129][82] For devices not under the Nexus brand, carrier testing requirements and tailoring for each specific device (due to manufacturer customization and fragmentation of Android) are cited as the main impediments to timely updates.[80] Commentators have also noted that the handset industry has a financial incentive not to update their devices, as the lack of updates for existing devices fuels the purchase of newer ones.[130][82]

Tablets Despite its success on smartphones, Android tablet adoption has been slow.[131] One of the main causes is the chicken or the egg situation where consumers are hesitant to buy an Android tablet due to a lack of high quality tablet apps, but developers are hesitant to spend time and resources developing tablet apps until there's a significant market for them.[132][133] The content and app "ecosystem" has proven much more important than "feeds and speeds" (hardware processing power) as the selling point for tablets. Due to the lack of Android tablet-specific apps in 2011, early Android tablets had to make do with existing smartphone apps that were ill-suited to larger screen sizes, whereas the dominance of Apple's iPad was reinforced by the large number of tablet-specific iOS apps.[133][134] Despite app support in its infancy, a considerable number of Android tablets (alongside those using other operating systems, such as the HP TouchPad and BlackBerry Playbook) were rushed out to market in an attempt to capitalize on the success of the iPad.[133] InfoWorld has suggested that some Android manufacturers initially treated their first tablets as a "Frankenphone business", a short-term lowinvestment opportunity by placing a smartphone-optimized Android OS (before Android 3.0 "Honeycomb" for tablets was available) on a device while neglecting user interface. This approach, such as with the Dell Streak, failed to gain market traction with consumers as well as damaging the early reputation of Android tablets.[135][136] Furthermore, several Android tablets such as the Motorola Xoom were priced the same or higher than the iPad, which hurt sales. An exception was the Amazon Kindle Fire, developed after a "wait and see approach" which relied upon lower pricing as well as access to the Amazon.com ecosystem of apps and content.[137][133] This began to change in 2012 with the release of the affordable Nexus 7 and a push by Google for developers to write better tablet apps.[138] Android tablets are expected to overtake the iPad within a few years.[139] Market share and rate of adoption Research company Canalys estimated in the second quarter of 2009 that Android had a 2.8% share of worldwide smartphone shipments.[140] By the fourth quarter of 2010 this had grown to 33% of the market, becoming the top-selling smartphone platform.[15] By the third quarter of 2011 Gartner estimated that more than half (52.5%) of the smartphone market belongs to Android.[141] By the third quarter of 2012 Android had a 75% share of the global smartphone market according to the research firm IDC.[19] In July 2011, Google said that 550,000 new Android devices were being activated every day,[142] up from 400,000 per day in May,[143] and more than 100 million devices had been activated[144] with 4.4% growth per week.[142] In September 2012, 500 million devices had been activated with 1.3 million activations per day.[20][21] Android market share varies by location. In July 2012, Android's market share in the United States was 52%,[145] and rises to 90% in China.[146]

Usage share of Android versions

Usage share of the different versions collected during a 14-day period ending on March 4, 2013 Usage share of the different versions as of March 4, 2013.[147] Most Android devices to date still run the older OS version 2.3 Gingerbread that was released on December 6, 2010, due to many lower-end devices still being released with it. Version 4.2.x 4.1.x 4.0.x 3.2 3.1 2.3.32.3.7 2.32.3.2 2.2 2.02.1 1.6 Application piracy There has been some concern about the ease with which paid Android apps can be pirated.[148] In a May 2012 interview with Eurogamer, the developers of Football Manager stated that the ratio of pirated players vs legitimate players was 9:1 for their game Football Manager Handheld.[149] However, not every developer agreed that piracy rates were an issue; for example, in July 2012 the developers of the game Code name Release date API level Distribution (March 4, 2013) 17 16 15 13 12 10 9 8 7 4 1.6% 14.9% 28.6% 0.9% 0.3% 44% 0.2% 7.6% 1.9% 0.2%

Jelly Bean November 13, 2012 Jelly Bean July 9, 2012

Ice Cream Sandwich December 16, 2011 Honeycomb Honeycomb Gingerbread July 15, 2011 May 10, 2011 February 9, 2011

Gingerbread December 6, 2010 Froyo Eclair May 20, 2010 October 26, 2009

Donut September 15, 2009

Wind-up Knight said that piracy levels of their game were only 12%, and most of the piracy came from China, where people cannot purchase apps from Google Play.[150] In 2010, Google released a tool for validating authorised purchases for use within apps, but developers complained that this was insufficient and trivial to crack. Google responded that the tool, especially its initial release, was intended as a sample framework for developers to modify and build upon depending on their needs, not as a finished security solution.[151] In 2012 Google released a feature in Android 4.1 that encrypted paid applications so that they would only work on the device on which they were purchased, but this feature has been temporarily deactivated due to technical issues.[152] Copyrights and patents Further information: Oracle v. Google, Smartphone wars, and Patent troll Both Android and Android phone manufacturers have been involved in numerous patent lawsuits. On August 12, 2010, Oracle sued Google over claimed infringement of copyrights and patents related to the Java programming language.[153] Oracle originally sought damages up to $6.1 billion,[154] but this valuation was rejected by a United States federal judge who asked Oracle to revise the estimate.[155] In response, Google submitted multiple lines of defense, counterclaiming that Android did not infringe on Oracle's patents or copyright, that Oracle's patents were invalid, and several other defenses. They said that Android is based on Apache Harmony, a clean room implementation of the Java class libraries, and an independently developed virtual machine called Dalvik.[156] In May 2012 the jury in this case found that Google did not infringe on Oracle's patents, and the trial judge ruled that the structure of the Java APIs used by Google was not copyrightable.[157][158] In addition to lawsuits against Google directly, various proxy wars have been waged against Android indirectly by targeting manufacturers of Android devices, with the effect of discouraging manufacturers from adopting the platform by increasing the costs of bringing an Android device to market.[159] Both Apple and Microsoft have sued several manufacturers for patent infringement, with Apple's ongoing legal action against Samsung being a particularly high-profile case. In October 2011 Microsoft said they had signed patent license agreements with ten Android device manufacturers, whose products account for 55% of the worldwide revenue for Android devices.[160] These include Samsung and HTC.[161] Samsung's patent settlement with Microsoft includes an agreement that Samsung will allocate more resources to developing and marketing phones running Microsoft's Windows Phone operating system.[159] Google has publicly expressed its frustration for the current patent landscape in the United States, accusing Apple, Oracle and Microsoft of trying to take down Android through patent litigation, rather than innovating and competing with better products and services.[162] In 2011-12, Google purchased Motorola Mobility for US$12.5 billion, which was viewed in part as a defensive measure to protect Android, since Motorola Mobility held more than 17,000 patents.[163] In December 2011 Google bought over a thousand patents from IBM.[164]

Beyond smartphones and tablets

The Sony SmartWatch: an example of how Android is used on electronics other than smartphones and tablets The open and customizable nature of Android allows it to be used on other electronics, including laptops and netbooks, smartbooks[165] smart TVs (Google TV) and cameras (Nikon Coolpix S800c and Galaxy Camera).[166][167] In addition, the Android operating system has seen applications on smart glasses (Project Glass), wristwatches,[168] headphones,[169] car CD and DVD players,[170] mirrors,[171] portable media players[172] and landlines[173] and Voice over IP phones.[174] Ouya, an upcoming videogames console running Android, became one of the most successful Kickstarter campaigns, crowdfunding US$8.5m for its development,[175][176] and was later followed by other Android-based video games consoles such as Project Shield from NVIDIA. In 2011, Google demonstrated "Android@Home", a new home automaton technology which uses Android to control a range of household devices including light switches, power sockets and thermostats.[177] Prototype light bulbs were announced that could be controlled from an Android phone or tablet, but Android head Andy Rubin was cautious to note that "turning a lightbulb on and off is nothing new," pointing to numerous failed home automation services. Google, he said, was thinking more ambitiously and the intention was to use their position as a cloud services provider to bring Google products into customers' homes.[178] BRAIN DRAIN: A DEFINITION The term brain drain may be defined broadly as the migration of trained and talented individuals from one institution, or from one country or part of a country, to another in search of better workingconditions, a higher quality of life and/or a less hostile environ -ment. Such migration may, according to the Scientific and Industri-al Research and Development Center (SIRDC), 4 t a k e a n y o f t h e following forms:1) Primary external brain drain, which occurs when trainedand skilled human resources leave their country to go and work in developed countries;2 ) S e c o n d a r y e x t e r n a l b r a i n d r a i n , w h i c h o c c u r s w h e n trained and skilled human resources leave the African Union or any other less-developed region of the world to work inother parts of the developing world; or 3 ) I n t e r n a l b r a i n d r a i n , w h i c h o c c u r s w h e n t r a i n e d a n d skilled human resources are not employed in the fields of their expertise in their

own country, or when such human resourcesmove from the public sector to the private sector or within a sector of a particular country.In this paper, the discourse is about the primary external braindrain and the secondary external brain drain to the exclusion of the internal brain drain. Preventative measures Talents play important roles in helping a country develop. The economy of a country that has a large number of world-class scientists and technicians can be more innovative than the others that don't.[129] Different areas and nations have distinct policies to retain skilled workers due to the different national or regional situation. For instance, in African countries, the health systems have been severely affected by brain drain, so various measures have been suggested and tried to limit the migration of health workers to rich countries.[130] In Kuwait, people have argued the country should cultivate a sense of security and hope among the elite to curb brain drain because people are not so confident of their countries' future.[131] China tries to create a normal and free atmosphere and mechanism that would help talents flourish.[129] And in India, although suffering severe brain drain every year, the Indian government has not to adopted strict policies because they believe that the overseas talent will eventually contribute to the nation in the future.[132] Germany established a government funded initiative called GAIN to assist Germans working abroad to return to their home country. Other countries (Switzerland, Austria, France) have similar initiatives. Not only do countries need to take preventative measures to keep their medical professionals, but Ngo's need to stop recruiting professionals from public health sectors. By taking medical staff from the government health sectors further brain drain occurs leaving these agencies with less talent especially since they are able to offer allot more money.. An opposite situation, in which many trained and talented individuals seek entrance into a country, is called a brain gain; this may create a brain drain in the nations that the individuals are leaving. A Canadian symposium in the late 1990s gave circulation to the new term, in response to Canada luring more skilled professionals to the country than it lost.[citation needed] In 2000, the US Congress announced that it was raising the annual cap on the number of temporary work visas granted to highly skilled professionals under its H1B visa program, from 115,000 to 195,000 per year, effective through 2003. That suggests a rough figure for the influx of talent into the United States at that time. A significant portion of this program was initiated by lobbyists from the computer industry, including Bill Gates.[133] In the same year the government of the United Kingdom, in cooperation with the Wolfson Foundation, a research charity, launched a 20 million, five-year research award scheme aimed at drawing the return of the UK's leading expatriate scientists and sparking the migration of top young researchers to the United Kingdom.[citation needed] Brain circulation In general most developing countries suffer brain drain because emigrant intellectuals refuse to return. Some migrants do return to their home countries or become transnational with homes in different countries.[134] Brain waste Sometimes migrants to other countries or urban areas are not able to obtain employment commensurate with their educational qualifications. This is called brain waste.[134] An example would be a Nigerian doctor who immigrates to Europe but works in the service industry, or even worse ends up doing menial jobs.

The advantages of the Brain Drain? The brain drain is effectively an export of human resources such as education services which has inadvertently become a money machine for countries such as the US contributing over $7bn to the US economy.[135] However it is important to note the knowledge and wealth generated is twofold, both for the country of origin and host country, who acquire an additional human capital to fill labour gaps thus increasing economic development. The country of origin exporting their skilled and highly educated workforce benefit from a brain gain both in terms of the increase in the labour power they possess, but also in the fact skilled migrants leaving the country generate increased demand for higher level education amongst the population,.[136] Furthermore the sending back of remittances increase economic development in the country and standard of living. Remittances are a positive effect of the brain drain because they increase living standards in society as Faini notes skilled migrants typically earn more therefore remit more thus fostering growth, [137] nevertheless this is not a precedent. The remittance economy is a significant part of the brain drain as well an integral source of income for developed economies, 2011 remittances were estimated at $372bn[138] and for countries such as Mexico and the Philippines was worth $24 and $34billion [138] respectively. Negative consequences of the Brain drain Whilst the brain drain is beneficial its flaws are inherently in its title because it usually involves the loss of human capital i.e. skilled labour force who are vital to the development of society and the country as a whole. In the case of skilled man power Alam et al. recognise emigration of these skilled workers as essentially providing personal benefits for individuals rather than public benefits.[139] The brain drain benefits individuals more so than society,however implementing policies to reduce their movement according to Skeldon "is in effect to act against the process of development.[136] This inadvertently means society is caught in a catch 22 scenario, whereby allowing the Brain Drain to continue is likely to result in knowledge being distributed unevenly [135] across space, resulting in the fall in economic development for either the country of origin or destination countries. Another consequence of the brain drain is the existence of social marginalisation which occurs due to several reasons. For example highly skilled labourers have been villainised by society because they are perceived as a disruption to existing society or the migrant themselves who have struggled to adapt to their new surroundings and way of life and may as a result, lead to them living 'parallel lives', which is the process whereby the migrant is in fact living a dual life which coexist side by side. Although the more pressing issue skilled migrants face in contemporary society is what Tsuda refers to as double marginalisation,[140] which refers to when migrants are kept from integrating into their new surroundings either by society or by existing governments, and upon their return home are shunned by the community they originally migrated from due to their earlier departure. Double marginalisation has become a common feature in contemporary society, which has in some respects reduced the amount of skilled migration occurring. Negative Impact of Brain Drain on Health Systems of Developing Countries Despite the existence of significant global efforts trying to improve health and healthcare systems in the developing world, the money invested is insufficient as health workers from the developing countries leave their home countries and immigrate to the developed world assuming low-status positions in rich countries. This phenomenon is known as brain drain. Those health workers, the brains, are drained from

their countries, while being attracted to the higher income abroad comparing to their income back home. As a result of many local health workers abandoning their countries, countries in the developing world lack sufficient health care workers, which harms the local health system: health systems in the developing world are receiving financial aid to deal with significant diseases and health issues such as child mortality, AIDS, and Malaria. However the money is ineffective as there is no sufficient manpower in the form of medical and health professionals to do the work required, which further damages the health system rather than strengthening it.[141] The utility of the brain drain The assumption is skilled workers migrating are likely to increase remittances to the home country,[139] however this is not always the case. A critic of Fainis view of skilled migrants remitting more is Graeme Hugo, who recognises the fact that highly skilled workers are often able to bring immediate family with them so they are not obliged to send money back [142] making the brain drain highly problematic for society especially when countries invest up to $50,000 on highly skilled individuals.[139] In assessing the usefulness of the brain drain it is important to understand that for some of the worl ds developing countries the gains from migration accrue neither from migrant remittances nor do they return home with amplified skills acquired abroad.[143] They are instead from the increase in promotion of education of highly skilled labour in developing countries as well as investment in infrastructure. Nonetheless the existence of vast remittance economy worldwide worth $510 billion in 2007[138] to a degree question whether Stark's claim are entirely accurate as this process is seemingly occurring at an alarming rate generating uneven levels of development globally.

Você também pode gostar