View on GitHub

AndroidSVG

SVG rendering library for Android

How To Download

The current release is version 1.4.

Check the v1.4 Release Notes to find out what's in the latest release.

Older releases can be found on the Maven Central repository.

For Android Studio users

If you haven't already, remember to add Maven Central to the repository list in you main/root build.gradle file.

    repositories {
        google()
        jcenter()
        mavenCentral()
    }

Then in your app module build.gradle file, add:

    implementation 'com.caverock:androidsvg-aar:1.4'

For people building with Maven

h3> To include AndroidSVG in your project, add the following dependency to your POM file.
<dependency>
  <groupId>com.caverock</groupId>
  <artifactId>androidsvg</artifactId>
  <version>1.3</version>
</dependency>