Skip to content

Commit

Permalink
zerodha#44: Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
maulikam authored Mar 30, 2024
1 parent 3578135 commit f253a6c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,35 @@ Kite Connect is a set of REST-like APIs that expose many capabilities required t
- [Java library documentation](https://kite.trade/docs/javakiteconnect/)

## Usage
Integrate the Kite Connect API Java client into your project using one of the following methods:

### Download jar file
- [Download Kite Connect 3 jar file](https://github.com/zerodhatech/javakiteconnect/tree/master/dist) and include it in your build path.

- Include com.zerodhatech.kiteconnect into build path from maven. Use version 3.4.0

- To use javakiteconnect in **Android**, you need to include jar file in the libs directory and add the following line in you module's gradle file ``` compile files('libs/kiteconnect.jar') ```

### Maven
Add the following dependency to your `pom.xml`:

```xml
<!-- https://mvnrepository.com/artifact/com.zerodhatech.kiteconnect/kiteconnect -->
<dependency>
<groupId>com.zerodhatech.kiteconnect</groupId>
<artifactId>kiteconnect</artifactId>
<version>3.4.0</version>
</dependency>
```

### Gradle
Add the following line to your build.gradle:

```xml
// https://mvnrepository.com/artifact/com.zerodhatech.kiteconnect/kiteconnect
implementation 'com.zerodhatech.kiteconnect:kiteconnect:3.4.0'
```

## API usage
```java
// Initialize Kiteconnect using apiKey.
Expand Down

0 comments on commit f253a6c

Please sign in to comment.