# cube-sdk
**Repository Path**: appstore/cube-sdk
## Basic Information
- **Project Name**: cube-sdk
- **Description**: A light package for Android development, it handles loading image and network request.
- **Primary Language**: Java
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2016-03-23
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[](https://travis-ci.org/etao-open-source/cube-sdk)
##[中文说明](https://github.com/etao-open-source/cube-sdk/blob/master/README-cn.md)
`Cube` is a light package for Android development.

DEMO project has been moved to [HERE](https://github.com/liaohuqiu/android-cube-app).
All of the `readme` content and document are moved to Github Pages, please visit the Github Pages for more imformation:
http://cube-sdk.liaohuqiu.net
### Import to your project
#### Repository
The latest version: `1.0.44.19-SNAPSHOT`, has been published to: https://oss.sonatype.org/content/repositories/snapshots, in gradle:
* gradle
```
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
```
* pom.xml
```
oss-snapshots
https://oss.sonatype.org/content/repositories/snapshots
false
true
```
The stable version: `1.0.44`, https://oss.sonatype.org/content/repositories/releases, in gradle:
* gradle
```
mavenCentral()
```
#### dependency
* pom.xml, latest version:
```xml
in.srain.cube
cube-sdk
aar
1.0.44.19-SNAPSHOT
```
* pom.xml, stable version:
```xml
in.srain.cube
cube-sdk
aar
1.0.44
```
* gradle, latest version:
```
compile 'in.srain.cube:cube-sdk:1.0.44.19-SNAPSHOT@aar'
```
* gradle, stable version:
```
compile 'in.srain.cube:cube-sdk:1.0.44@aar'
```
###### Eclipse
Load the content into you eclipse, it's a library project. Then use it in your application project.