请输入您要查询的百科知识:

 

词条 Android software development
释义

  1. Official development tools

     {{Anchor|SDK}}Android SDK  {{Anchor|PlatformTools}}Android SDK Platform Tools  {{Anchor|ADB}}Android Debug Bridge (adb)  Fastboot  {{Anchor|NDK}}Android NDK  Android Open Accessory Development Kit 

  2. External hardware development

  3. Third-party development tools

     AIDE  Android::Build  App Inventor for Android  Basic4android  Coreliu  Corona SDK  Delphi  DroidScript  Golang  HyperNext Android Creator  Kivy  Lazarus  Processing  Qt for Android  RubyMotion  SDL  Visual Studio Emulator for Android  Xamarin 

  4. Android Developer Challenge

  5. Community-based distributions

  6. Java standards

  7. History and market share

  8. See also

  9. References

  10. Bibliography

{{Use mdy dates|date=November 2014}}Android software development is the process by which new applications are created for devices running the Android operating system. Google states that[3] "Android apps can be written using Kotlin, Java, and C++ languages" using the Android software development kit (SDK), while using other languages is also possible. All non-JVM languages, such as Go, JavaScript, C, C++ or assembly, need the help of JVM language code, that may be supplied by tools, likely with restricted API support. Some languages/programming tools allow cross-platform app support, i.e. for both Android and iOS. Third party tools, development environments and language support have also continued to evolve and expand since the initial SDK was released in 2008. In addition, with major business entities like Walmart, Amazon, Bank of America etc. eyeing to engage and sell through mobiles, mobile application development is witnessing a transformation.[4]

Official development tools

{{Anchor|SDK}}Android SDK

{{Infobox software
| title = Android SDK
| name =
| logo =
| logo caption =
| screenshot =
| caption =
| collapsible =
| developer = Google
| released = {{Start date and age|2009|10}}
| discontinued =
| latest release version = 26.1.1
| latest release date = {{Start date and age|2017|09}}[5]
| status =
| programming language = Java
| operating system = Cross-platform
| platform =
| size =
| language = ภาษาไทย
| genre = IDE, SDK
| license =
| website = {{URL|http://developer.android.com/sdk/index.html}}
}}

The Android software development kit (SDK) includes a comprehensive set of development tools.[6] These include a debugger, libraries, a handset emulator based on QEMU, documentation, sample code, and tutorials. Currently supported development platforms include computers running Linux (any modern desktop Linux distribution), Mac OS X 10.5.8 or later, and Windows 7 or later. {{As of|2015|03}}, the SDK is not available on Android itself, but software development is possible by using specialized Android applications.[7][8][9]

Until around the end of 2014, the officially-supported integrated development environment (IDE) was Eclipse using the Android Development Tools (ADT) Plugin, though IntelliJ IDEA IDE (all editions) fully supports Android development out of the box,[10] and NetBeans IDE also supports Android development via a plugin.[11] As of 2015, Android Studio,[12] made by Google and powered by IntelliJ, is the official IDE; however, developers are free to use others, but Google made it clear that ADT was officially deprecated since the end of 2015 to focus on Android Studio as the official Android IDE. Additionally, developers may use any text editor to edit Java and XML files, then use command line tools (Java Development Kit and Apache Ant are required) to create, build and debug Android applications as well as control attached Android devices (e.g., triggering a reboot, installing software package(s) remotely).[13][7]

Enhancements to Android's SDK go hand-in-hand with the overall Android platform development. The SDK also supports older versions of the Android platform in case developers wish to target their applications at older devices. Development tools are downloadable components, so after one has downloaded the latest version and platform, older platforms and tools can also be downloaded for compatibility testing.[14]

Android applications are packaged in .apk format and stored under /data/app folder on the Android OS (the folder is accessible only to the root user for security reasons). APK package contains .dex files[15] (compiled byte code files called Dalvik executables), resource files, etc.

{{Anchor|PlatformTools}}Android SDK Platform Tools

The Android SDK Platform Tools are a separately downloadable subset of the full SDK, consisting of command-line tools such as adb and fastboot.

{{Anchor|ADB}}Android Debug Bridge (adb)

The Android Debug Bridge (adb) is a tool to run commands on a connected Android device. The adbd daemon runs on the device, and the adb client starts a background server to multiplex commands sent to devices. In addition to the command-line interface,[16] numerous graphical user interfaces exist to control adb.

The format for issuing commands is typically:

 adb [-d|-e|-s ]  where -d is the option for specifying the single USB-attached device,       -e for the single running Android emulator on the computer,       -s for specifying a USB-attached device by its unique serial number. If there is only one attached device or running emulator, these options are not necessary.

For example, Android applications can be saved by the command backup to a file,

whose name is backup.ab by default.[17]

In a security issue reported in March 2011, ADB was targeted as a vector to attempt to install a rootkit on connected phones using a "resource exhaustion attack".[18]

Fastboot

{{redirect|Fastboot|the PC fast booting ability|Instant-on}}

Fastboot is a diagnostic protocol included with the SDK package used primarily to modify the flash filesystem via a USB connection from host computer. It requires that the device be started in a boot loader or Secondary Program Loader mode, in which only the most basic hardware initialization is performed. After enabling the protocol on the device itself, it will accept a specific set of commands sent to it via USB using a command line. Some of the most commonly used fastboot commands include:

  • flash{{snd}} rewrites a partition with a binary image stored on the host computer.
  • erase{{snd}} erases a specific partition.
  • reboot{{snd}} reboots the device into either the main operating system, the system recovery partition or back into its boot loader.
  • devices{{snd}} displays a list of all devices (with the serial number) connected to the host computer.
  • format{{snd}} formats a specific partition; the file system of the partition must be recognized by the device.

{{Anchor|NDK}}Android NDK

{{Infobox software
| title = Android NDK
| logo =
| logo caption =
| screenshot =
| caption =
| collapsible =
| developer = Google
| released = {{Start date and age|2009|6}}[19]
| discontinued =
| latest release version = r19c
| latest release date = {{Start date and age|2019|01}}[19]
| latest preview version =
| status =
| programming language = C and C++
| operating system = {{Plainlist|
  • Windows Vista and later
  • OS X 10.10 and later
  • Linux

| platform = IA-32 (Windows only) or x86-64 (Windows,[20] macOS and Linux)
| size =
| language = English
| genre = SDK
| license =
| website = {{URL|https://developer.android.com/ndk/}}
}}

Code written in C/C++ can be compiled to ARM, or x86 native code (or their 64-bit variants) using the Android Native Development Kit (NDK). The NDK uses the Clang compiler to compile C/C++. GCC was included until NDK r17, but removed in r18 in 2018.

Native libraries can be called from Java code running under the Android Runtime using System.loadLibrary, part of the standard Android Java classes.[21][22]

Command-line tools can be compiled with the NDK and installed using adb.[23]

Android uses Bionic as its C library, and the LLVM libc++ as its C++ Standard Library. The NDK also includes a variety of other APIs:[24] zlib compression, OpenGL ES or Vulkan graphics, OpenSL ES audio, and various Android-specific APIs for things like logging, access to cameras, or accelerating neural networks.

The NDK includes support for CMake and its own ndk-build (based on GNU Make). Android Studio supports running either of these from Gradle. Other third-party tools allow integrating the NDK into Eclipse[25] and Visual Studio.[26]

For CPU profiling, the NDK also includes simpleperf[27] which is similar to the Linux perf tool, but with better support for Android and specifically for mixed Java/C++ stacks.

Android Open Accessory Development Kit

The Android 3.1 platform (also backported to Android 2.3.4) introduces Android Open Accessory support, which allows external USB hardware (an Android USB accessory) to interact with an Android-powered device in a special "accessory" mode. When an Android-powered device is in accessory mode, the connected accessory acts as the USB host (powers the bus and enumerates devices) and the Android-powered device acts as the USB device. Android USB accessories are specifically designed to attach to Android-powered devices and adhere to a simple protocol (Android accessory protocol) that allows them to detect Android-powered devices that support accessory mode.[28]

External hardware development

Development tools intended to help an Android device interact with external electronics include IOIO, Android Open Accessory Development Kit, Microbridge, Triggertrap, etc.

Third-party development tools

AIDE

  • AIDE (Android application), An Android app that allows Android apps development directly using the device. It compiles and installs the created app in the device.

Android::Build

[https://metacpan.org/release/Android-Build Android::Build] is a Perl CPAN module which enables callers to build an Android APK file using only the basic command line tools: aapt, dx, javac, jarsigner, zipalign without having to rely on either Apache Ant or Gradle. This reduced dependency set simplifies continuous release systems which rely on fully automated remote app generation and testing.

App Inventor for Android

{{Main article|Google App Inventor}}

On July 12, 2010, Google announced the availability of App Inventor for Android, a Web-based visual development environment for novice programmers, based on MIT's Open Blocks Java library and providing access to Android devices' GPS, accelerometer and orientation data, phone functions, text messaging, speech-to-text conversion, contact data, persistent storage, and Web services, initially including Amazon and Twitter.[29] "We could only have done this because Android’s architecture is so open," said the project director, MIT's Hal Abelson.[30] Under development for over a year,[31] the block-editing tool has been taught to non-majors in computer science at Harvard, MIT, Wellesley, Trinity College (Hartford,) and the University of San Francisco, where Professor David Wolber developed an introductory computer science course and tutorial book for non-computer science students based on App Inventor for Android.[32][33]

In the second half of 2011, Google released the source code, terminated its Web service, and provided funding for the creation of The MIT Center for Mobile Learning, led by the App Inventor creator Hal Abelson and fellow MIT professors Eric Klopfer and Mitchel Resnick.[34] The latest version created as the result of Google–MIT collaboration was released in February 2012, while the first version created solely by MIT was launched in March 2012[35] and upgraded to App Inventor 2 in December 2013.[36] As of 2014, App Inventor is maintained by MIT.

Basic4android

Basic4android is a commercial product similar to Simple.[37] It is inspired by Microsoft Visual Basic 6 and Microsoft Visual Studio. It makes android programming much simpler for regular Visual Basic programmers who find coding in Java difficult. Basic4android is very active,

Coreliu

Coreliu enables non-technical users to write immersive educational apps which run natively on Android devices.[38] App authors use a file held in a GitHub repository to describe the images and text to be used in the app. Speech is generated from the text via Amazon Web Services Polly. Coreliu packages the photos and generated speech into an Android APK file that the author can distribute freely using a Creative Commons License.

Corona SDK

Corona SDK is a software development kit (SDK) created by Walter Luh, founder of Corona Labs Inc.. Corona SDK allows software programmers to build mobile applications for iPhone, iPad and Android devices.

Corona lets developers build graphic applications by using its integrated Lua language, which is layered on top of C++/OpenGL. The SDK uses a subscription-based purchase model, without requiring any per-application royalties and imposes no branding requirements.

Delphi

Delphi can also be used for creating Android application in the Object Pascal language. The latest release is Delphi 10 Seattle, developed by Embarcadero.[39] User interfaces are developed using the cross-platform GUI framework Firemonkey. Additionally, non-visual components for interaction with the various sensors (like Camera, Gyroscope, GPS and Bluetooth etc.) are available. Other services, such as access to certain keyboard events, are available in a platform-independent manner as well; this is done using interfaces. The compiler is based on the LLVM architecture, and debugging from IDE is possible. The generated apps are based on the NDK, but in contrast to Xamarin, the runtime is compiled into the application itself.

DroidScript

A rapid application development tool for developing native Android applications using JavaScript. This tool can be used directly on the mobile device or via a browser based IDE connected to the device via WiFi. It makes use of Google's Chrome V8 JavaScript engine.

Golang

Since version 1.4 of the Go programming language, writing applications for Android is supported. With Go version 1.7, and with the help of the gomobile tool (i.e. gomobile build), compiling to Android APK and iOS apps is supported from the same Go codebase. Strictly speaking, Java/JVM code is always needed to run on Android, but the gomobile tool provides the minimal JVM code needed (or Objective-C code needed in case of iOS). Go support is restricted to what Go types can be used and (currently) to a restricted set of Android APIs (e.g. OpenAL and OpenGL ES 2 bindings are provided that could be used to make 2D/3D games, such one of the provided examples[40] for Android or iOS, or other graphics applications).[41]

HyperNext Android Creator

HyperNext Android Creator (HAC) is a software development system aimed at beginner programmers that can help them create their own Android apps without knowing Java and the Android SDK. It is based on HyperCard that treated software as a stack of cards with only one card being visible at any one time and so is well suited to mobile phone applications that have only one window visible at a time. HyperNext Android Creator's main programming language is simply called HyperNext and is loosely based on Hypercard's HyperTalk language. HyperNext is an interpreted English-like language and has many features that allow creation of Android applications. It supports a growing subset of the Android SDK including its own versions of the GUI control types and automatically runs its own background service so apps can continue to run and process information while in the background.

Kivy

Kivy is an open source Python library for developing multitouch application software with a natural user interface (NUI) for a wide selection of devices. Kivy provides the possibility of maintaining a single application for numerous operating systems ("code once, run everywhere"). Kivy has a custom-built deployment tool for deploying mobile applications called Bulldozer, which is available only for Linux. Bulldozer is currently alpha software but is far less cumbersome than older Kivy deployment methods. Applications programmed with Kivy can be submitted to any Android mobile application distribution platform.{{citation needed|date=February 2018}}

Lazarus

The Lazarus IDE may be used to develop Android applications using Object Pascal (and other Pascal dialects), based on the Free Pascal compiler starting from version 2.7.1.

Processing

The Processing environment, which also uses the Java language, has supported an Android mode since version 1.5; integration with device camera and sensors is possible using the Ketai library.

Qt for Android

Qt for Android enables Qt 5 applications to run on devices with Android v2.3.3 (API level 10) or later.[42] Qt is a cross-platform application framework which can target platforms such as Android, Linux, iOS, Sailfish OS and Windows. Qt application development is done in standard C++ and QML, requiring both the Android NDK and SDK.[43] Qt Creator is the integrated development environment provided with the Qt Framework for multi-platform application development.

RubyMotion

RubyMotion is a toolchain to write native mobile apps in Ruby. As of version 3.0, RubyMotion supports Android. RubyMotion Android apps can call into the entire set of Java Android APIs from Ruby, can use 3rd-party Java libraries, and are statically compiled into machine code.[44]

SDL

The SDL library offers also a development possibility beside Java, allowing the development with C and the simple porting of existing SDL and native C applications. By injection of a small Java shim and JNI the usage of native SDL code is possible,[45] allowing Android ports like e.g. the Jagged Alliance 2 video game.[46]

Visual Studio Emulator for Android

Microsoft shipped in 2015 a free stand-alone emulator for Android, dubbed Visual Studio Emulator for Android.[47] The emulator supports installation of Google Play through a drag-and-drop interface.[48] It can work in conjunction with Visual Studio, which supports cross-platform development, letting C++ developers create projects from templates for Android native-activity applications, or create high-performance shared libraries to include in other solutions. Its features include platform-specific IntelliSense, breakpoints, device deployment and emulation.[49]

Xamarin

With a C# shared codebase, developers can use Xamarin to write native iOS, Android, and Windows apps with native user interfaces and share code across multiple platforms.

Android Developer Challenge

{{Main article|Android Developer Challenge}}

The Android Developer Challenge was a competition to find the most innovative application for Android.[50] Google offered prizes totaling 10 million US dollars, distributed between ADC I and ADC II. ADC I accepted submissions from January 2 to April 14, 2008. The 50 most promising entries, announced on May 12, 2008, each received a $25,000 award to further development.[51][52] It ended in early September with the announcement of ten teams that received $275,000 each, and ten teams that received $100,000 each.[53]

ADC II was announced on May 27, 2009.[54] The first round of the ADC II closed on October 6, 2009.[55] The first-round winners of ADC II comprising the top 200 applications were announced on November 5, 2009. Voting for the second round also opened on the same day and ended on November 25. Google announced the top winners of ADC II on November 30, with SweetDreams, What the Doodle!? and WaveSecure being nominated the overall winners of the challenge.[56][57]

Community-based distributions

{{See also|List of custom Android distributions}}

There is a community of open-source enthusiasts that build and share Android-based distributions (i.e. firmware) with a number of customizations and additional features, such as FLAC lossless audio support and the ability to store downloaded applications on the microSD card.[58] This usually involves rooting the device. Rooting allows users root access to the operating system, enabling full control of the phone. Rooting has several disadvantages as well, including increased risk of hacking, high chances of bricking, losing warranty, increased virus attack risks, etc.[59] It is also possible to install custom firmware, although the device's boot loader must also be unlocked. Custom firmware allows users of older phones to use applications available only on newer releases.[60]

Those firmware packages are updated frequently, incorporate elements of Android functionality that haven't yet been officially released within a carrier-sanctioned firmware, and tend to have fewer limitations. CyanogenMod and OMFGB are examples of such firmware.

On September 24, 2009, Google issued a cease and desist letter[61] to the modder Cyanogen, citing issues with the re-distribution of Google's closed-source applications[62] within the custom firmware. Even though most of Android OS is open source, phones come packaged with closed-source Google applications for functionality such as the Google Play and GPS navigation. Google has asserted that these applications can only be provided through approved distribution channels by licensed distributors. Cyanogen has complied with Google's wishes and is continuing to distribute this mod without the proprietary software. It has provided a method to back up licensed Google applications during the mod's install process and restore them when the process is complete.[63]

Java standards

{{Main article| Comparison of Java and Android API}}

Obstacles to development include the fact that Android does not use established Java standards, that is, Java SE and ME. This prevents compatibility between Java applications written for those platforms and those written for the Android platform. Android reuses the Java language syntax and semantics, but it does not provide the full class libraries and APIs bundled with Java SE or ME.[64] However, there are multiple tools in the market from companies such as Myriad Group and UpOnTek that provide Java ME to Android conversion services.[65][66][67]

Android provides its own GUI classes, and does not provide Java AWT, Swing or JavaFX. It does not support the full Java Beans API.

History and market share

Android was created by the Open Handset Alliance, which is led by Google. The early feedback on developing applications for the Android platform was mixed.[69] Issues cited include bugs, lack of documentation, inadequate QA infrastructure, and no public issue-tracking system. (Google announced an issue tracker on January 18, 2008.)[70] In December 2007, MergeLab mobile startup founder Adam MacBeth stated, "Functionality is not there, is poorly documented or just doesn't work... It's clearly not ready for prime time."[71] Despite this, Android-targeted applications began to appear the week after the platform was announced. The first publicly available application was the Snake game.[72][73]

A preview release of the Android SDK was released on November 12, 2007. On July 15, 2008, the Android Developer Challenge Team accidentally sent an email to all entrants in the Android Developer Challenge announcing that a new release of the SDK was available in a "private" download area. The email was intended for winners of the first round of the Android Developer Challenge. The revelation that Google was supplying new SDK releases to some developers and not others (and keeping this arrangement private) led to widely reported frustration within the Android developer community at the time.[74]

On August 18, 2008, the Android 0.9 SDK beta was released. This release provided an updated and extended API, improved development tools and an updated design for the home screen. Detailed instructions for upgrading are available to those already working with an earlier release.[75] On September 23, 2008, the Android 1.0 SDK (Release 1) was released.[76] According to the release notes, it included "mainly bug fixes, although some smaller features were added." It also included several API changes from the 0.9 version. Multiple versions have been released since it was developed.[77]

On December 5, 2008, Google announced the first Android Dev Phone, a SIM-unlocked and hardware-unlocked device that is designed for advanced developers. It was a modified version of HTC's Dream phone. While developers can use regular consumer devices to test and use their applications, some developers may choose a dedicated unlocked or no-contract device.

{{As of|July 2013}}, more than one million applications have been developed for Android,[78] with over 25 billion downloads.[79][80] A June 2011 research indicated that over 67% of mobile developers used the platform, at the time of publication.[81] Android smartphone shipments are forecast to exceed 1.2 billion units in 2018 with an 85% market share.[82]

See also

  • Android Studio
  • List of free and open source Android applications
  • Rooting (Android OS)

References

1. ^{{cite web|url=https://source.android.com/source/index.html |title=The Android Source Code |publisher=source.android.com |date= |accessdate=February 2, 2017}}
2. ^{{cite news|title=Editorial: Why You Should Go Nexus|url=http://droidlessons.com/why-you-should-go-nexus-opinion-2/|accessdate=April 17, 2013|newspaper=Droid Lessons|date=September 24, 2012|author=Syed H}}
3. ^[https://developer.android.com/guide/components/fundamentals.html Android Developers Application Fundamentals]
4. ^{{Cite web|url=http://www.biz4solutions.com/blog/wearables-influence-mobile-application-development-future/|title=How Wearables Influence the Future of Mobile Application Development?|last=Rakars|first=Ash|date=May 31, 2018|website=|access-date=}}
5. ^{{cite web|url=https://developer.android.com/tools/sdk/tools-notes.html |title=SDK Tools | Android Developers |publisher=Developer.android.com |date= |accessdate=April 25, 2018}}
6. ^{{cite web |url = http://developer.android.com/guide/developing/tools/index.html |title = Tools Overview |work = Android Developers |date = July 21, 2009}}
7. ^{{cite web|url=https://play.google.com/store/apps/details?id=com.aide.ui|title=AIDE- IDE for Android Java C++ - Android Apps on Google Play|author=appfour|work=google.com}}
8. ^{{cite web|url=https://play.google.com/store/apps/details?id=air.JavaEditor|title=Java Editor - Android Apps on Google Play|author=gesturedevelop|work=google.com}}
9. ^{{cite web|url=https://play.google.com/store/apps/details?id=ch.tanapro.JavaIDEdroid|title=JavaIDEdroid - Android Apps on Google Play|author=Tanapro GmbH, Tom Arn|work=google.com}}
10. ^{{cite web|url=http://www.jetbrains.com/idea/features/android.html|accessdate=September 19, 2012 |title=IntelliJ Android Development}}
11. ^{{cite web|url=http://plugins.netbeans.org/plugin/19545/nbandroid|accessdate=September 19, 2012 |title = NBAndroid Plugin}}
12. ^{{cite web|url=http://developer.android.com/sdk/index.html|title = Android Studio}}
13. ^{{cite web |url = http://jonwestfall.com/2009/08/backup-restore-android-apps-using-adb/ |title = Backup & Restore Android Apps Using ADB |first = Jon |last = Westfall |date = August 25, 2009 |work = JonWestfall.com |accessdate =December 7, 2009}}
14. ^{{cite web |url=http://developer.android.com/sdk/tools-notes.html |title=SDK Tools}}
15. ^{{cite web |url=http://developer.android.com/guide/appendix/glossary.html |title=Android SDK Glossary}}
16. ^"Android Debug Bridge | Android Developers" Accessed December 27, 2012
17. ^{{cite web|url=http://www.techrepublic.com/article/how-to-create-a-full-backup-of-your-android-device-without-root/ |title=How to create a full backup of your Android device without root |author=Jack Wallen |date=2015-03-06 |accessdate=2016-01-29}}
18. ^Lemos, Robert [https://www.darkreading.com/attacks-breaches/open-source-vulnerabilities-paint-a-target-on-android/d/d-id/1135417 "Open source vulnerabilities paint a target on Android"]
19. ^{{cite web|url=https://developer.android.com/ndk/downloads/revision_history |title=Android NDK | Android Developers |publisher=Developer.android.com |date=November 13, 2012 |accessdate=March 13, 2014}}
20. ^{{Cite web|url=https://developer.android.com/ndk/downloads/index.html|title=NDK Downloads {{!}} Android Developers|website=developer.android.com|language=en|access-date=2018-04-24}}
21. ^{{cite web|url= http://davanum.wordpress.com/2007/12/09/android-invoke-jni-based-methods-bridging-cc-and-java/ |title=Android — Invoke JNI based methods (Bridging C/C++ and Java) |last=Srinivas |first=Davanum |date=December 9, 2007 |accessdate=December 13, 2008| archiveurl= https://web.archive.org/web/20081216084711/http://davanum.wordpress.com/2007/12/09/android-invoke-jni-based-methods-bridging-cc-and-java/| archivedate= December 16, 2008 | deadurl= no}}
22. ^{{cite web|url= http://developer.android.com/reference/java/lang/System.html |title=java.lang.System |work=Android Developers |accessdate=September 3, 2009}}
23. ^https://developer.android.com/studio/command-line/adb.html
24. ^https://developer.android.com/ndk/guides/stable_apis
25. ^{{cite web|url= http://mhandroid.wordpress.com/2011/01/23/using-eclipse-for-android-cc-development/ |title=Using Eclipse for Android C/C++ Development}}
26. ^{{cite web|url= http://visualgdb.com/tutorials/android/ |title=Tutorial: Android Native Development with Visual Studio}}
27. ^https://developer.android.com/ndk/guides/simpleperf
28. ^{{cite web|url=http://developer.android.com/guide/topics/usb/adk.html |title=Accessory Development Kit | Android Developers|publisher=Developer.android.com |date= |accessdate=October 2, 2012}}
29. ^{{cite news |last=Claburn |first=Thomas |title=Google App Inventor Simplifies Android Programming |url=http://www.informationweek.com/news/smb/mobile/showArticle.jhtml?articleID=225702880&subSection=News |accessdate=July 12, 2010 |newspaper=Information Week |date=July 12, 2010| archiveurl= https://web.archive.org/web/20100715053302/http://www.informationweek.com/news/smb/mobile/showArticle.jhtml?articleID=225702880&subSection=News| archivedate= July 15, 2010 | deadurl= no}}
30. ^{{cite news |last=Lohr |first=Steve |title=Google’s Do-It-Yourself App Creation Software |url=https://www.nytimes.com/2010/07/12/technology/12google.html?src=busln |accessdate=July 12, 2010 |newspaper=New York Times |date=July 11, 2010| archiveurl= https://web.archive.org/web/20100715055536/http://www.nytimes.com/2010/07/12/technology/12google.html?src=busln| archivedate=July 15, 2010| deadurl= no}}
31. ^{{cite news |last=Abelson |first=Hal |title=App Inventor for Android|url=http://googleresearch.blogspot.com/2009/07/app-inventor-for-android.html |accessdate=July 12, 2010 |newspaper=Google Research Blog |date=July 31, 2009| archiveurl= https://web.archive.org/web/20100807225847/http://googleresearch.blogspot.com/2009/07/app-inventor-for-android.html| archivedate= August 7, 2010 | deadurl= no}}
32. ^{{cite news |last=Kim|first=Ryan |title=Google brings app-making to the masses |url=http://articles.sfgate.com/2009-12-11/business/17220628_1_computer-science-smart-phone-android |accessdate=July 12, 2010 |newspaper=San Francisco Chronicle |date=December 11, 2009| archiveurl= https://web.archive.org/web/20100717133322/http://articles.sfgate.com/2009-12-11/business/17220628_1_computer-science-smart-phone-android| archivedate= July 17, 2010 | deadurl= no}}
33. ^{{cite web |last=Wolber |first=David |title=AppInventor.org |url=http://www.appinventor.org/ |accessdate=July 12, 2010| archiveurl= https://web.archive.org/web/20100715053515/http://www.appinventor.org/| archivedate= July 15, 2010 | deadurl= no}}
34. ^{{cite news |url=http://web.mit.edu/newsoffice/2010/android-abelson-0819.html |title=The MIT roots of Google's new software |publisher=MIT News Office |date=August 19, 2010 |accessdate=October 1, 2015 |last=Hardesty |first=Larry}}
35. ^{{cite web|url=http://web.mit.edu/newsoffice/2013/app-inventor-launches-second-iteration.html|title=App Inventor launches second iteration|last=Clark| first=Andrew|date=December 30, 2013}}
36. ^{{cite web|url=http://appinventor.mit.edu/explore/classic.html |title=App Inventor Classic | Explore MIT App Inventor |publisher=Appinventor.mit.edu |date=December 3, 2013 |accessdate=March 13, 2014}}
37. ^{{cite web |url = http://www.basic4ppc.com |title = Basic4android}}
38. ^{{cite web |url = http://www.coreliu.org/howToWriteAnApp.html |title = Coreliu}}
39. ^{{cite web |url = http://www.embarcadero.com/products/delphi |title = Delphi Xe7 }}
40. ^{{Cite web|url=https://godoc.org/golang.org/x/mobile/example/flappy|title=Command flappy|website=godoc.org|language=en|access-date=2018-07-17}}
41. ^{{cite web | url = https://godoc.org/golang.org/x/mobile/app | title = Package app, which lets you write Apps for Android (and eventually, iOS) | accessdate = 2015-06-09 | quote = There are two ways to use Go in an Android App. The first is as a library called from Java, the second is to use a restricted set of features but work entirely in Go. An app written entirely in Go results in a significantly simpler programming environment (and eventually, portability to iOS), however only a very restricted set of Android APIs are available. The provided interfaces are focused on games. It is expected that the app will draw to the entire screen (via OpenGL, see the go.mobile/gl package), and that none of the platform's screen management infrastructure is exposed. On Android, this means a native app is equivalent to a single Activity (in particular a NativeActivity) and on iOS, a single UIWindow. Touch events will be accessible via this package. When Android support is out of preview, all APIs supported by the Android NDK will be exposed via a Go package.}}
42. ^{{cite web |url = http://qt-project.org/doc/qt-5/android-support.html |title = Qt for Android}}
43. ^{{cite web |url = http://qt-project.org/wiki/Android |title = Qt Wiki : Android}}
44. ^{{cite web |url = http://www.rubymotion.com/news/2014/12/11/announcing-rubymotion-3.html |title = Announcing RubyMotion 3.0: Android Platform and More}}
45. ^{{cite web|url=http://www.libsdl.org/tmp/SDL/README.android |title=Simple DirectMedia Layer for Android |quote=How the port works, - Android applications are Java-based, optionally with parts written in C, - As SDL apps are C-based, we use a small Java shim that uses JNI to talk to the SDL library, - This means that your application C code must be placed inside an android Java project, along with some C support code that communicates with Java, - This eventually produces a standard Android .apk package |date=August 12, 2012 |accessdate=September 9, 2012 |publisher=sdl.org |deadurl=yes |archiveurl=https://web.archive.org/web/20120604080429/http://www.libsdl.org/tmp/SDL/README.android |archivedate=June 4, 2012 }}
46. ^JA2 Stracciatella Feedback " Jagged Alliance 2 Android Stracciatella Port RC2 Release - please test {{webarchive|url=https://web.archive.org/web/20121023085701/http://www.ja-galaxy-forum.com/board/ubbthreads.php?ubb=showflat&Number=273148&page=1 |date=October 23, 2012 }} on the Bear's Pit Forum, October 3, 2011
47. ^{{cite|url=https://betanews.com/2015/07/21/microsoft-ships-stand-alone-android-emulator/|title=Microsoft ships stand-alone Android Emulator|author=Mike Williams|date=July 21, 2015|accessdate=March 14, 2018|work=Betanews}}
48. ^{{cite|url=http://www.alteridem.net/2017/02/02/installing-google-play-gapps-visual-studio-android-emulators/|title=Installing Google Play (GApps) on Visual Studio Android Emulators (2017 version)||author=Rob Prouse|date=February 2, 2017|accessdate=March 14, 2018}}
49. ^{{cite web |url = http://www.visualstudio.com/en-us/features/cplusplus-mdd-vs.aspx | accessdate = May 27, 2015 | title = Visual C++ Cross-Platform Mobile}}
50. ^{{ cite web | url=https://artificial-future.com/android-application-development/ | title=what makes an android development so good }}
51. ^{{cite web |url = http://android-developers.blogspot.com/2008/05/top-50-applications.html |work = Android Developers Blog |title = The Top 50 Applications |first = Jason |last = Chen |date = May 12, 2008 |accessdate = September 4, 2009| archiveurl= https://web.archive.org/web/20090925051155/http://android-developers.blogspot.com/2008/05/top-50-applications.html| archivedate= September 25, 2009 | deadurl= no}}
52. ^{{cite news |url = http://www.linuxdevices.com/news/NS3168326017.html |title = Android Developer Challenge announces first-round winners |work = Linux for Devices |first = Eric |last = Brown |date = May 13, 2008 |deadurl = yes |archiveurl = https://web.archive.org/web/20080514204010/http://www.linuxdevices.com/news/NS3168326017.html |archivedate = May 14, 2008 |df = mdy-all }}
53. ^{{cite web |url=https://code.google.com/android/adc/adc_gallery/ |title=ADC I Top 50 Gallery |accessdate=May 19, 2009 |work=Android Developer Challenge}}
54. ^{{cite web |url=https://code.google.com/android/adc/ |title=Android Developer Challenge |accessdate=January 11, 2008 |work=Google Code}}
55. ^{{cite web |url = http://android-developers.blogspot.com/2009/10/adc-2-round-1-scoring-complete.html |title = ADC 2 Round 1 Scoring Complete |work = Android Developers Blog |first = Eric |last = Chu |date = October 6, 2009 |accessdate =November 3, 2009| archiveurl= https://web.archive.org/web/20091101174228/http://android-developers.blogspot.com/2009/10/adc-2-round-1-scoring-complete.html| archivedate= November 1, 2009 | deadurl= no}}
56. ^{{cite web |url = https://code.google.com/android/adc/gallery_winners.html |title = ADC 2 Overall Winners |work = Android Developer Challenge |publisher = Google |accessdate =December 5, 2010| archiveurl= https://web.archive.org/web/20110104052927/http://code.google.com/android/adc/gallery_winners.html| archivedate= January 4, 2011 | deadurl= no}}
57. ^{{cite web |url = http://www.businessweek.com/the_thread/techbeat/archives/2009/11/android_develop_2.html |title = Android Developer Challenge 2 Winners Announced |work = BusinessWeek |first = Olga |last = Kharif |date = November 30, 2009 |accessdate =December 5, 2010}}
58. ^{{cite web |url=http://forum.xda-developers.com/forumdisplay.php?f=448 |work=xda-developers forum |title=Dream android development |accessdate=September 11, 2009}}
59. ^{{cite web |url=http://unbrick.itcse.com/rooting-advantages-disadvantages/ |work=ITCSE forum |title=Rooting: Advantages and Disadvantages |accessdate=September 21, 2013}}
60. ^{{cite web |url=http://voltmobileandtech.com/blog/ |title= Android 2.1 from Motorola Droid Ported to G1 |work=Volt Mobile |date= March 10, 2010}}
61. ^{{cite web |url = http://androidandme.com/2009/09/hacks/cyanogenmod-in-trouble/ |title = CyanogenMod in trouble? |work = Android and me |first = Taylor |last = Wimberly |date = September 24, 2009 |accessdate = September 26, 2009| archiveurl= https://web.archive.org/web/20091003165002/http://androidandme.com/2009/09/hacks/cyanogenmod-in-trouble/| archivedate= October 3, 2009 | deadurl= no}}
62. ^{{cite web |url= http://android-developers.blogspot.com/2009/09/note-on-google-apps-for-android.html |title= A Note on Google Apps for Android |work = Android Developers Blog |first= Dan |last= Morrill |date= September 25, 2009 |accessdate= September 26, 2009| archiveurl= https://web.archive.org/web/20091025130628/http://android-developers.blogspot.com/2009/09/note-on-google-apps-for-android.html| archivedate= October 25, 2009 | deadurl= no}}
63. ^{{cite web |url = http://www.cyanogenmod.com/home/the-current-state |title = The current state... |work = CyanogenMod Android Rom |date = September 27, 2009 |accessdate = September 27, 2009 |archiveurl = https://web.archive.org/web/20091103155814/http://www.cyanogenmod.com/home/the-current-state |archivedate = November 3, 2009 |deadurl = yes |df = mdy-all }}
64. ^{{cite web| url=http://www.javalobby.org/nl/archive/jlnews_20071113o.html| title=Google Android: Initial Impressions and Criticism| date=November 13, 2007| last=van Gurp|first=Jilles| work=Javalobby| quote=Frankly, I don't understand why Google intends to ignore the vast amount of existing implementation out there. It seems like a bad case of "not invented here" to me. Ultimately, this will slow adoption. There are already too many Java platforms for the mobile world and this is yet another one| accessdate=March 7, 2009}}
65. ^{{cite web |url = http://www.myriadgroup.com/Media-Centre/News/Myriad-New-J2Android-Converter-Fuels-Android-Applications-Gold-Rush.aspx |title = Myriad's New J2Android Converter Fuels Android Applications Gold Rush |date = March 19, 2010 |access-date = May 13, 2011 |archive-url = https://web.archive.org/web/20110704072717/http://www.myriadgroup.com/Media-Centre/News/Myriad-New-J2Android-Converter-Fuels-Android-Applications-Gold-Rush.aspx |archive-date = July 4, 2011 |dead-url = yes |df = mdy-all}}
66. ^{{cite web| url=http://www.javaworld.com/community/node/4170| title=J2Android hopes you don't know that Android is Java-based| quote=On the other hand, you might think this is kind of a scam aimed at developers who don't really understand the nature of the platform they're targeting. My biggest complaint is that you'd think that Mikael Ricknäs, the IDG News Service reporter who wrote the first story linked to above (who toils for the same company that publishes JavaWorld), would have at least mentioned the relationship between Java and Android to make the oddness of this announcement clear.| date=March 23, 2010}}
67. ^{{cite web| url=http://www.javaworld.com/community/?q=node/4210| title=Myriad CTO: J2Android moves MIDlets to "beautiful" Android framework| quote=We will have to wait and see exactly how much pickup J2Android actually sees. The tool isn't actually available on the open market just yet; while Schillings spoke optimistically about "converting 1,000 MIDlets in an afternoon," at the moment they're working with a few providers to transform their back catalogs. So those of you out there hoping to avoid learning how to write Android code may have to wait a while.| date=March 31, 2010}}
68. ^{{cite web | url = http://www.androidcentral.com/google-sooner-prototype-appears-shows-one-googles-first-prototype-builds-android | title = Google Sooner prototype appears, shows off one Google's first prototype builds of Android | date = May 6, 2012 | accessdate = March 1, 2015 | author = Richard Devine | website = androidcentral.com}}
69. ^{{cite web |url=https://arstechnica.com/news.ars/post/20071219-google-android-plagued-by-dysfunctional-development-process.html |title=Developing apps for Google Android: it's a mixed bag |accessdate=December 19, 2007 |last=Paul |first=Ryan |date=December 19, 2007 |work=Ars Technica| archiveurl= https://web.archive.org/web/20071220052053/http://arstechnica.com/news.ars/post/20071219-google-android-plagued-by-dysfunctional-development-process.html| archivedate= December 20, 2007 | deadurl= no}}
70. ^{{cite web |url=http://android-developers.blogspot.com/2008/01/you-cant-rush-perfection-but-now-you.html |title=You can't rush perfection, but now you can file bugs against it |work=Android Developers Blog |first=Dan |last=Morrill |date=January 18, 2008 |accessdate=September 3, 2009}}
71. ^{{cite web |url=https://www.wsj.com/articles/SB119800856883537515 |title=Glitches Bug Google's Android Software |accessdate=December 19, 2007 |last=Morrison |first=Scott |date=December 19, 2007 |work=The Wall Street Journal |publisher= }}
72. ^{{cite web |url=http://www.android-freeware.org/download/snake |title=Snake |accessdate=January 26, 2008 |work=Android Freeware Directory}}
73. ^{{cite web |url=http://www.mobiles2day.com/2007/11/14/first-android-application-snake/ |title=First Android Application — Snake |accessdate=January 7, 2008 |date=November 14, 2007 |work=Mobiles2day |publisher= }}
74. ^{{cite web |url=https://www.theregister.co.uk/2008/07/14/android_developer_unrest/ |title=Google plays Hide and Seek with Android SDK |first=Cade |last=Metz |date=July 14, 2008 |accessdate=October 23, 2008 |work=The Register| archiveurl= https://web.archive.org/web/20081006032345/https://www.theregister.co.uk/2008/07/14/android_developer_unrest/| archivedate= October 6, 2008 | deadurl= no}}
75. ^{{cite web |url=https://code.google.com/android/intro/upgrading.html |title=Android — An Open Handset Alliance Project: Upgrading the SDK |accessdate=October 24, 2008| archiveurl= https://web.archive.org/web/20080913131056/http://code.google.com/android/intro/upgrading.html| archivedate= September 13, 2008}}
76. ^{{cite web |url=http://developer.android.com/sdk/older_releases.html |title=Other SDK Releases |accessdate=September 2, 2009 |work=Android Developers}}
77. ^{{cite web |url=http://developer.android.com/sdk/older_releases.html |title=SDK Archives}}
78. ^{{cite web|url=http://mashable.com/2013/07/24/google-play-1-million/|title=Google Play Hits 1 Million Apps|date=July 24, 2013|work=Mashable}}
79. ^{{cite web|title=Android App Stats |url=http://www.androlib.com/appstats.aspx |accessdate=December 31, 2010 |archiveurl=https://web.archive.org/web/20110102122636/http://www.androlib.com/appstats.aspx |archivedate=January 2, 2011 |deadurl=yes }}
80. ^{{cite web |url= https://techcrunch.com/2011/04/14/google-3-billion-android-apps-installed-up-50-percent-from-last-quarter/ |title=Google: 3 Billion Android Apps Installed; Downloads Up 50 Percent From Last Quarter |author=Leena Rao|work=Techcrunch|date=April 14, 2011|accessdate=May 13, 2011| archiveurl= https://web.archive.org/web/20110425062025/http://techcrunch.com/2011/04/14/google-3-billion-android-apps-installed-up-50-percent-from-last-quarter/| archivedate= April 25, 2011 | deadurl= no}}
81. ^{{cite web |url =http://www.visionmobile.com/blog/2011/06/developer-economics-2011-winners-and-losers-in-the-platform-race/ |title= Developer Economics 2011}}
82. ^{{cite web |url=https://www.idc.com/getdoc.jsp?containerId=prUS43856818 |title=Worldwide Smartphone Volumes Will Remain Down in 2018 Before Returning to Growth in 2019 and Beyond, According to IDC |work=idc.com |date=May 30, 2018 |accessdate=June 6, 2018}}

Bibliography

{{Refbegin}}
  • {{Cite book

| first1 = Burnette
| last1 = Ed
| date = July 13, 2010
| title = Hello, Android: Introducing Google's Mobile Development Platform
| publisher = Pragmatic Bookshelf
| edition = 3rd
| isbn = 978-1-934356-56-2
| url = http://pragprog.com/titles/eband3/hello-android
}}
  • {{Cite book

| first1 = Frank
| last1 = Ableson
| first2 = Robi
| last2 = Sen
| first3 = Chris
| last3 = King
| date = January 2011
| title = Android in Action, Second Edition
| publisher = Manning
| edition = 2nd
| isbn = 978-1-935182-72-6
| url =
}}
  • {{Cite book

| first1 = Shane
| last1 = Conder
| first2 = Lauren
| last2 = Darcey
| date = July 24, 2012
| title = Android Wireless Application Development Volume II: Advanced Topics
| publisher = Addison-Wesley Professional
| edition = 3rd
| isbn = 0-321-81384-7
| url = http://www.informit.com/store/product.aspx?isbn=0321813847
}}
  • {{Cite book

| first1 = Mark
| last1 = Murphy
| date = June 26, 2009
| title = Beginning Android
| publisher = Apress
| edition = 1st
| isbn = 1-4302-2419-3
| url = http://www.apress.com/9781430224198
}}
  • {{Cite book

| first1 = Reto
| last1 = Meier
| date = March 2010
| title = Professional Android 2 Application Development
| publisher = Wrox Press
| edition = 1st
| isbn = 978-0-470-56552-0
| url = http://www.wrox.com/WileyCDA/WroxTitle/Professional-Android-Application-Development.productCd-0470565527.html
}}
  • {{Cite book

| first = Chris
| last = Haseman
| date = July 21, 2008
| title = Android Essentials
| publisher = Apress
| edition = 1st
| isbn = 1-4302-1064-8
| url = http://www.apress.com/9781430210641
}}
  • {{Cite book

| first1 = Ian
| last1 = Clifton
| date = August 3, 2012
| title = The Essentials of Android Application Development LiveLessons (Video Training)
| publisher = Addison-Wesley Professional
| edition = 1st
| isbn = 0-13-299658-8
| url = http://www.informit.com/store/product.aspx?isbn=0132996588
}}{{Refend}}{{Wikibooks|Android}}{{Android}}{{Table Mobile operating systems}}{{Google Inc.}}{{Linux}}

8 : Android (operating system)|Android (operating system) development software|Embedded Linux|Free mobile software|Mobile Linux|Smartphones|Software developer communities|Software development by platforms

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/21 8:30:35