-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
23 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,42 @@ | ||
# java-stellar-sdk | ||
|
||
[![Test and Deploy](https://github.com/stellar/java-stellar-sdk/actions/workflows/test-deploy.yml/badge.svg?branch=master)](https://github.com/stellar/java-stellar-sdk/actions/workflows/test-deploy.yml) | ||
[![](https://jitpack.io/v/stellar/java-stellar-sdk.svg)](https://jitpack.io/#stellar/java-stellar-sdk) | ||
[![Test and Deploy](https://github.com/lightsail-network/java-stellar-sdk/actions/workflows/test-deploy.yml/badge.svg?branch=master)](https://github.com/lightsail-network/java-stellar-sdk/actions/workflows/test-deploy.yml) | ||
|
||
The Java Stellar Sdk library provides APIs to build transactions and connect to [Horizon](https://github.com/stellar/go/tree/master/services/horizon) and [Soroban-RPC Server](https://soroban.stellar.org/docs/reference/rpc). | ||
The Java Stellar Sdk library provides APIs to build transactions and connect to [Horizon](https://github.com/lightsail-network/go/tree/master/services/horizon) and [Soroban-RPC Server](https://soroban.stellar.org/docs/reference/rpc). | ||
|
||
## Installation | ||
|
||
### Maven | ||
|
||
Use [jitpack.io](https://jitpack.io)'s Maven repository: | ||
### Apache Maven | ||
|
||
```xml | ||
<dependency> | ||
<groupId>network.lightsail</groupId> | ||
<artifactId>stellar-sdk</artifactId> | ||
<version>0.43.1</version> | ||
</dependency> | ||
``` | ||
repositories { | ||
maven { url "https://jitpack.io" } | ||
} | ||
|
||
dependencies { | ||
implementation 'com.github.stellar:java-stellar-sdk:{version}' | ||
} | ||
### Gradle | ||
```groovy | ||
implementation 'network.lightsail:stellar-sdk:0.43.1' | ||
``` | ||
|
||
The list of versions to install can be found in the [Releases](https://github.com/stellar/java-stellar-sdk/releases) section. More information can be found in [jitpack.io docs](https://jitpack.io/docs/). | ||
|
||
### JAR | ||
|
||
Download the latest jar from the GitHub repo's [releases tab](https://github.com/stellar/java-stellar-sdk/releases). Add the `jar` package to your project according to how your environment is set up. | ||
Download the latest jar from the GitHub repo's [releases tab](https://github.com/lightsail-network/java-stellar-sdk/releases). Add the `jar` package to your project according to how your environment is set up. | ||
|
||
## Basic Usage | ||
For some examples on how to use this library, take a look at the [Get Started docs in the developers site](https://developers.stellar.org/docs/tutorials/create-account/). | ||
|
||
## Documentation | ||
Javadoc is available at https://stellar.github.io/java-stellar-sdk | ||
Javadoc is available at https://lightsail-network.github.io/java-stellar-sdk/ | ||
|
||
## Integrate into Android project | ||
If you want to integrate this SDK on Android platforms with API level 26 and above, you don't need any additional configuration. | ||
However, if you need to include it on lower platforms, you may also need to add the [Java Stellar SDK Android SPI](https://github.com/stellar/java-stellar-sdk-android-spi). | ||
However, if you need to include it on lower platforms, you may also need to add the [Java Stellar SDK Android SPI](https://github.com/lightsail-network/java-stellar-sdk-android-spi). | ||
|
||
## Contributing | ||
For information on how to contribute, please refer to our [contribution guide](https://github.com/stellar/java-stellar-sdk/blob/master/CONTRIBUTING.md). | ||
For information on how to contribute, please refer to our [contribution guide](https://github.com/lightsail-network/java-stellar-sdk/blob/master/CONTRIBUTING.md). | ||
|
||
## License | ||
java-stellar-sdk is licensed under an Apache-2.0 license. See the [LICENSE](https://github.com/stellar/java-stellar-sdk/blob/master/LICENSE) file for details. | ||
java-stellar-sdk is licensed under an Apache-2.0 license. See the [LICENSE](https://github.com/lightsail-network/java-stellar-sdk/blob/master/LICENSE) file for details. |