From f29ffeed4f1615876d1ad95b038c2d561c652178 Mon Sep 17 00:00:00 2001 From: Justin Brooks Date: Sun, 6 Oct 2024 21:13:43 -0400 Subject: [PATCH] Add a note about agp --- changelog.md | 2 +- readme.md | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 12bdca58..1c67a963 100644 --- a/changelog.md +++ b/changelog.md @@ -7,7 +7,7 @@ ### Changed - `vgo-plugin` (`com.jzbrooks.vgo.plugin`) no longer requires a particular version of Android Gradle Plugin. - Note: `:vgo` is now an abstract implementation of the tool which does not assume either a cli or plugin context. CLI related logic has been relocated into `:vgo-core`. + Note: `:vgo` is now an abstract implementation of the tool which does not assume either a cli or plugin context. CLI related logic has been relocated into `:vgo-cli`. ### Deprecated diff --git a/readme.md b/readme.md index 9f63f510..5b549337 100644 --- a/readme.md +++ b/readme.md @@ -4,7 +4,7 @@ vgo is a tool for optimizing and converting between vector artwork representatio vgo is built on vgo-core, a library and intermediate representation for vector graphics. -[![Build Status](https://github.com/jzbrooks/vgo/workflows/build/badge.svg)](https://github.com/jzbrooks/vgo/actions?workflow=build) +[![Build Status](https://github.com/jzbrooks/vgo/workflows/build/badge.svg?branch=master)](https://github.com/jzbrooks/vgo/actions?workflow=build) [![Maven Central: vgo](https://img.shields.io/maven-central/v/com.jzbrooks/vgo?label=vgo)](https://ossindex.sonatype.org/component/pkg:maven/com.jzbrooks/vgo) [![Maven Central: vgo-core](https://img.shields.io/maven-central/v/com.jzbrooks/vgo-core?label=vgo-core)](https://ossindex.sonatype.org/component/pkg:maven/com.jzbrooks/vgo-core) [![Maven Central: vgo-plugin](https://img.shields.io/maven-central/v/com.jzbrooks/vgo-plugin?label=vgo-plugin)](https://ossindex.sonatype.org/component/pkg:maven/com.jzbrooks/vgo-plugin) @@ -50,6 +50,11 @@ vgo { } ``` +> [!NOTE] +> You must have the android tools sdk on your build classpath if you are converting SVGs to vector drawables. +> This is typically done by applying the Android Gradle Plugin. + +> [!TIP] > For Android projects a non-zero indent is better for readability and provides no apk size impact after AAPT processing. ## Command Line Interface