Skip to content

Releases: ErrorxCode/JSON-android

[v1] JSON-Java port for Android

10 Apr 19:35
03dd783

Choose a tag to compare

Ported version : 20250517 of JSON-java

JsonAndroid

💉Implimentation

Gradle :-

Add it in your root build.gradle at the end of repositories:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Step 2. Add the dependency

	dependencies {
	        implementation 'com.github.Errorxcode:json-android:1.0'
	}

Maven :-

Step 1. Add to project level file

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Step 2. Add the dependency

	<dependency>
	    <groupId>com.github.Errorxcode</groupId>
	    <artifactId>json-android</artifactId>
	    <version>1.0</version>
	</dependency>