Maven Repository - POM file for Android android 2.3.1 2.3.1

Summary

Google Android Library.

A library jar that provides APIs for Applications written for the Google Android Platform..

Declaration

Here is the list of declaration for android. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.google.android</groupId>
   <artifactId>android</artifactId>
   <version>2.3.1</version>
</dependency>

If you think this Maven repository POM file listing for android is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Apache 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.





Depends on

The android-2.3.1 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Logcommons-logging 1.1.1
Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.
1143
Httphttpclient 4.0.1
HttpComponents Client (base module)
37
Androidopengl-api gl1.1-android-2.1_r1
The Android implementation of Khronos OpenGL Spec for the Google Android SDK.
11
XMLxpp3 1.1.4c
MXP1 is a stable XmlPull parsing engine that is based on ideas from XPP and in particular XPP2 but completely revised and rewritten to take the best advantage of latest JIT JVMs such as Hotspot in JDK 1.4+.
78
JSONjson 20080701
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a te...
13

Depended by

The following table lists the most popular artifacts which are depending on android-2.3.1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Androidandroid-test 2.3.1
A library jar that provides APIs for testing Applications written for the Google Android Platform.
7
Androidrobolectric 1.0-RC1
An alternative Android testing framework.
6

Plugin

The following plugins are used in the android-2.3.1.jar

  1. maven-compiler-plugin




Packages

The following packages are defined in the android-2.3.1.jar

android
android.accessibilityservice
android.accounts
android.app
android.app.admin
android.app.backup
android.appwidget
android.bluetooth
android.content
android.content.pm
android.content.res
android.database
android.database.sqlite
android.gesture
android.graphics
android.graphics.drawable
android.graphics.drawable.shapes
android.hardware
android.inputmethodservice
android.location
android.media
android.media.audiofx
android.net
android.net.http
android.net.sip
android.net.wifi
android.nfc
android.opengl
android.os
android.os.storage
android.preference
android.provider
android.sax
android.service.wallpaper
android.speech
android.speech.tts
android.telephony
android.telephony.cdma
android.telephony.gsm
android.text
android.text.format
android.text.method
android.text.style
android.text.util
android.util
android.view
android.view.accessibility
android.view.animation
android.view.inputmethod
android.webkit
android.widget
com.android.internal.util
dalvik.annotation
dalvik.bytecode
dalvik.system




POM File Source

Here is the content of the POM file.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.google.android</groupId>
  <artifactId>android</artifactId>
  <version>2.3.1</version>
  <packaging>jar</packaging>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>5</version>
  </parent>

  <name>Google Android Library</name>
  <description>A library jar that provides APIs for Applications written for the Google Android Platform.</description>
  <url>http://source.android.com/</url>
  <inceptionYear>2008</inceptionYear>
  <licenses>
    <license>
      <name>Apache 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <comments>
        While the EULA for the Android SDK restricts distribution of those binaries, the source code 
        is licensed under Apache 2.0 which allows compiling binaries from source and then distributing
        those versions. 
      </comments>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>https://android.git.kernel.org/</url>
    <connection>git://android.git.kernel.org/platform/manifest.git</connection>
  </scm>
  

  <properties> 
    <release.name>gingerbread</release.name>
    <platform>android-9</platform>
    <branch.tag>android-2.3_r1</branch.tag>
  </properties> 

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>

  </build>

  <dependencies>
    <!-- org.apache.commons.logging -->
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1.1</version>
    </dependency>
    <!-- org.apache.http.* -->
    <dependency>
      <groupId>org.apache.httpcomponents</groupId>
      <artifactId>httpclient</artifactId>
      <version>4.0.1</version>
    </dependency>
    <!-- javax.microedition.khronos.* -->
    <dependency>
      <groupId>org.khronos</groupId>
      <artifactId>opengl-api</artifactId>
      <version>gl1.1-android-2.1_r1</version>
    </dependency>
    <!-- org.xml.sax.*, org.w3c.dom.* -->
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xmlParserAPIs</artifactId>
      <version>2.6.2</version>
    </dependency>
    <!-- org.xmlpull.v1.* -->
    <dependency>
      <groupId>xpp3</groupId>
      <artifactId>xpp3</artifactId>
      <version>1.1.4c</version>
    </dependency>
    <!-- org.json.* -->
    <dependency>
      <groupId>org.json</groupId>
      <artifactId>json</artifactId>
      <version>20080701</version>
    </dependency>
  </dependencies>

</project>