https://github.com/droplet-js/android-json
https://github.com/droplet-js/android-json
json
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/droplet-js/android-json
- Owner: droplet-js
- License: apache-2.0
- Created: 2019-02-13T09:36:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-04T03:38:25.000Z (over 7 years ago)
- Last Synced: 2025-05-22T09:40:36.503Z (about 1 year ago)
- Topics: json
- Language: Java
- Size: 180 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# android-json
[](https://cloud.drone.io/v7lin/android-json)
[](https://github.com/v7lin/android-json/releases)
[](https://android-arsenal.com/api?level=14)
### json
````
源码摘自 'org.json:json:20180813'
````
### snapshot
````
ext {
latestVersion = '20180813-SNAPSHOT'
}
allprojects {
repositories {
...
maven {
url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
}
...
}
}
````
### release
````
ext {
latestVersion = '20180813'
}
allprojects {
repositories {
...
jcenter()
...
}
}
````
### usage
java
````
...
dependencies {
...
implementation "io.github.v7lin:json:${latestVersion}"
...
}
...
````
android
````
...
dependencies {
...
implementation "io.github.v7lin:json:${latestVersion}"
...
}
...
````