Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.dragon66:pixymeta-android:'
}
dependencies {
implementation("com.github.dragon66:pixymeta-android:")
}
<dependency>
<groupId>com.github.dragon66</groupId>
<artifactId>pixymeta-android</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.dragon66" % "pixymeta-android" % ""
:dependencies [[com.github.dragon66/pixymeta-android ""]]
Standalone Android version of PixyMeta - a pure Java image metadata manipulation tool.
There is currently no stable release of PIXYMETA-ANDROID. However you can pull the latest SNAPSHOT from Sonatype SNAPSHOT repository by adding the snapshot repository to your pom.xml:
<repository>
<id>oss.sonatype.org</id>
<name>Sonatype Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
Then you can use the SNAPSHOT version of ICAFE in your pom.xml:
<dependency>
<groupId>com.github.dragon66</groupId>
<artifactId>pixymeta-android</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
Go to the wiki page to see this library in action or grab the "pixymeta-android.jar" from the lib folder and try it yourself!
Tested on Android Nexus4 virtual device only!!!
Project using pixymeta-android
Suggestions? custom requirements? Open an issue or send email to me directly: yuwen_66@yahoo.com