android-accountviews

Android view for representing user account information

License

License

GroupId

GroupId

com.androidhuman
ArtifactId

ArtifactId

accountviews
Last Version

Last Version

0.1.0
Release Date

Release Date

Type

Type

aar
Description

Description

android-accountviews
Android view for representing user account information
Project URL

Project URL

https://github.com/kunny/android-accountviews
Source Code Management

Source Code Management

https://github.com/kunny/android-accountviews

Download accountviews

How to add to project

<!-- https://jarcasting.com/artifacts/com.androidhuman/accountviews/ -->
<dependency>
    <groupId>com.androidhuman</groupId>
    <artifactId>accountviews</artifactId>
    <version>0.1.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.androidhuman/accountviews/
implementation 'com.androidhuman:accountviews:0.1.0'
// https://jarcasting.com/artifacts/com.androidhuman/accountviews/
implementation ("com.androidhuman:accountviews:0.1.0")
'com.androidhuman:accountviews:aar:0.1.0'
<dependency org="com.androidhuman" name="accountviews" rev="0.1.0">
  <artifact name="accountviews" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.androidhuman', module='accountviews', version='0.1.0')
)
libraryDependencies += "com.androidhuman" % "accountviews" % "0.1.0"
[com.androidhuman/accountviews "0.1.0"]

Dependencies

compile (1)

Group / Artifact Type Version
com.android.support » appcompat-v7 jar 19.+

Project Modules

There are no modules declared in this project.

android-accountviews

The Android View implementations for displaying user's account information

How to use

Install library

android-accountviews supports intallation to local maven repository. To install library into a local maven repository, invoke following command on the project root :

$ ./gradlew :accountviews:install

If it is a first time after clone, the build may fails. If so, please follow following procedure :

  1. Remove ':sample' from settings.gradle. After removing the ':sample', the settings.gradle should look like :

     include ':accountviews'
    
  2. Invoke install command for android-accountviews library.

     $ ./gradlew :accountviews:install
    
  3. Revert settings.gradle to original state.

     include ':accountviews', ':sample'
    
  4. Now your build would be run without any issues.

Add to dependency

android-accountviews now available on the maven central repository. To use android-accountviews from your project, add following to your build.gradle.

dependencies {
    compile 'com.androidhuman:accountviews:+'
}

If you prefer modify the android-accountviews with your implementation, modify your build.gradle as follows:

buildscript {
    repositories {
        mavenCentral()
        mavenLocal() // Add this
    }
}
   
//... Skip some lines ...
   
dependencies {
    compile 'com.androidhuman.accountviews:android-accountviews:+' // Add this
}

Okay, it's all done. Now you can use android-accountviews from your project.

Versions

Version
0.1.0