yongjhih/CardView


CardView v7 for eclipse

Download


Step 1. Add the JitPack repository to your build file

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

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

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

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.yongjhih:CardView:'
	}
	dependencies {
		implementation("com.github.yongjhih:CardView:")
	}
	<dependency>
	    <groupId>com.github.yongjhih</groupId>
	    <artifactId>CardView</artifactId>
	    <version></version>
	</dependency>

                            
    libraryDependencies += "com.github.yongjhih" % "CardView" % ""
        
        

                            
    :dependencies [[com.github.yongjhih/CardView ""]]
        
        

Readme


CardView for eclipse

Allow android.support.v7.cardview AAR easy to use in ADT/Eclipse.

This project was built with {sdk}/extras/android/m2repository/com/android/support/cardview-v7 by the following steps:

$ cp ${sdk}/extras/android/m2repository/com/android/support/cardview-v7/21.0.0-rc1/cardview-v7-21.0.0-rc1.aar cardview-v7-21.0.0-rc1.zip
$ unzip cardview-v7-21.0.0-rc1.zip
$ mkdir libs/
$ mv classes.jar libs/cardview-v7-21.0.0-rc1.jar

Usage

  1. Import this as android library into eclipse
  2. Add project dependency

See Also

  • http://stackoverflow.com/a/24522502