bugsnag-android.
Official Bugsnag notifier for Android applications.
Here is the list of declaration for bugsnag-android. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.bugsnag</groupId> <artifactId>bugsnag-android</artifactId> <version>2.2.0</version> </dependency>
If you think this Maven repository POM file listing for bugsnag-android is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:MIT
URL: http://opensource.org/licenses/MIT.
The bugsnag-android-2.2.0 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JSON | json 20090211 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... | 157 |
Android | support-v4 r6 The Support Package includes static "support libraries" that you can add to your Android application in order to use APIs that are either not available for older platform versions or that offer "utility" APIs that aren't a part of the framework APIs. | 6 |
The following plugins are used in the bugsnag-android-2.2.0.jar
The following packages are defined in the bugsnag-android-2.2.0.jar
com.bugsnag.android com.bugsnag.android.activity com.bugsnag.android.utils
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.bugsnag</groupId> <artifactId>bugsnag-android</artifactId> <version>2.2.0</version> <packaging>jar</packaging> <name>bugsnag-android</name> <description>Official Bugsnag notifier for Android applications</description> <url>https://bugsnag.com</url> <licenses> <license> <name>MIT</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/bugsnag/bugsnag-android</url> <connection>scm:git:git@github.com:bugsnag/bugsnag-android.git</connection> <developerConnection>scm:git:git@github.com:bugsnag/bugsnag-android.git</developerConnection> </scm> <properties> <platform.version> 2.1.2 </platform.version> </properties> <!-- Dependencies --> <dependencies> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> <version>${platform.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.bugsnag</groupId> <artifactId>bugsnag</artifactId> <version>[1.2.4,2)</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> <scope>provided</scope> </dependency> <!-- Optional dependencies for custom Bugsnag activities --> <dependency> <groupId>com.google.android</groupId> <artifactId>support-v4</artifactId> <version>r6</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.actionbarsherlock</groupId> <artifactId>actionbarsherlock</artifactId> <version>4.2.0</version> <scope>provided</scope> </dependency> </dependencies> <!-- Use apache pom as parent, so we can release to the remote repo --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <!-- Build settings and plugins --> <build> <plugins> <!-- Android Plugin--> <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <version>3.5.0</version> <configuration> <androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile> <assetsDirectory>${project.basedir}/assets</assetsDirectory> <resourceDirectory>${project.basedir}/res</resourceDirectory> <nativeLibrariesDirectory>${project.basedir}/src/main/native</nativeLibrariesDirectory> <sdk> <platform>3</platform> </sdk> <undeployBeforeDeploy>true</undeployBeforeDeploy> </configuration> <extensions>true</extensions> </plugin> <!-- Require Java 1.6+ --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <compilerArgument>-Xlint</compilerArgument> <compilerArgument>-g:lines,source</compilerArgument> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <!-- Proguard --> <plugin> <groupId>com.pyx4me</groupId> <artifactId>proguard-maven-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>proguard</goal> </goals> </execution> </executions> <configuration> <proguardInclude>${basedir}/proguard.cfg</proguardInclude> </configuration> </plugin> <!-- Create additional jar with bugsnag-java included --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> </plugins> </build> </project>