Cube SDK Parent

Cube SDK, library for Android development

License

License

GroupId

GroupId

in.srain
ArtifactId

ArtifactId

cube-parent
Last Version

Last Version

1.1.1
Release Date

Release Date

Type

Type

pom
Description

Description

Cube SDK Parent
Cube SDK, library for Android development
Project Organization

Project Organization

Huqiu Liao
Source Code Management

Source Code Management

https://github.com/etao-open-source/cube-sdk

Download cube-parent

Filename Size
cube-parent-1.1.1.pom 7 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/in.srain/cube-parent/ -->
<dependency>
    <groupId>in.srain</groupId>
    <artifactId>cube-parent</artifactId>
    <version>1.1.1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/in.srain/cube-parent/
implementation 'in.srain:cube-parent:1.1.1'
// https://jarcasting.com/artifacts/in.srain/cube-parent/
implementation ("in.srain:cube-parent:1.1.1")
'in.srain:cube-parent:pom:1.1.1'
<dependency org="in.srain" name="cube-parent" rev="1.1.1">
  <artifact name="cube-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='in.srain', module='cube-parent', version='1.1.1')
)
libraryDependencies += "in.srain" % "cube-parent" % "1.1.1"
[in.srain/cube-parent "1.1.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • core

Build Status

##中文说明

Cube is a light package for Android development.

Screen Shot

DEMO project has been moved to HERE.

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.40-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

    <repository>
        <id>oss-snapshots</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        <releases>
            <enabled>false</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
    

The stable version: 1.0.44, https://oss.sonatype.org/content/repositories/releases, in gradle:

  • gradle

    mavenCentral()
    

dependency

  • pom.xml, latest version:
<dependency>
    <groupId>in.srain.cube</groupId>
    <artifactId>cube-sdk</artifactId>
    <type>aar</type>
    <!-- or apklib format, if you want -->
    <!-- <type>apklib</type> -->
    <version>1.0.44.40-SNAPSHOT</version>
</dependency>
  • pom.xml, stable version:
<dependency>
    <groupId>in.srain.cube</groupId>
    <artifactId>cube-sdk</artifactId>
    <type>aar</type>
    <!-- or apklib format, if you want -->
    <!-- <type>apklib</type> -->
    <version>1.0.44</version>
</dependency>
  • gradle, latest version:
compile 'in.srain.cube:cube-sdk:1.0.44.40-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.

SDK version >= 19

in.srain

Versions

Version
1.1.1
1.1.0