-
Notifications
You must be signed in to change notification settings - Fork 1
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
8 changed files
with
120 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,37 @@ | ||
# java-stellar-sdk-android-spi | ||
|
||
[![Test and Deploy](https://github.com/stellar/java-stellar-sdk-android-spi/actions/workflows/test-deploy.yml/badge.svg?branch=main)](https://github.com/stellar/java-stellar-sdk-android-spi/actions/workflows/test-deploy.yml) | ||
[![](https://jitpack.io/v/stellar/java-stellar-sdk-android-spi.svg)](https://jitpack.io/#stellar/java-stellar-sdk-android-spi) | ||
[![Test and Deploy](https://github.com/lightsail-network/java-stellar-sdk-android-spi/actions/workflows/test-deploy.yml/badge.svg?branch=main)](https://github.com/lightsail-network/java-stellar-sdk-android-spi/actions/workflows/test-deploy.yml) | ||
[![Maven Central Version](https://img.shields.io/maven-central/v/network.lightsail/stellar-sdk-android-spi)](https://central.sonatype.com/artifact/network.lightsail/stellar-sdk-android-spi) | ||
|
||
The goal of this library is to enable users to conveniently integrate the Java Stellar SDK into lower versions of the Android platform. In this context, lower versions refer to Android API level 23 to 27. If your minSdk is set to 28 or higher, you do not need to include this library. | ||
The goal of this library is to enable users to conveniently integrate the Java Stellar SDK into lower versions of the | ||
Android platform. In this context, lower versions refer to Android API level 23 to 27. If your minSdk is set to 28 or | ||
higher, you do not need to include this library. | ||
|
||
## Installation | ||
|
||
### Maven | ||
|
||
Use [jitpack.io](https://jitpack.io)'s Maven repository: | ||
### Apache Maven | ||
|
||
```xml | ||
<dependency> | ||
<groupId>network.lightsail</groupId> | ||
<artifactId>stellar-sdk-android-spi</artifactId> | ||
<version>0.43.1</version> | ||
</dependency> | ||
``` | ||
repositories { | ||
maven { url "https://jitpack.io" } | ||
} | ||
dependencies { | ||
implementation 'com.github.stellar:java-stellar-sdk:{version}' | ||
implementation 'com.github.stellar:java-stellar-sdk-android-spi:{version}' | ||
} | ||
|
||
### Gradle | ||
|
||
```groovy | ||
implementation 'network.lightsail:stellar-sdk-android-spi:0.43.1' | ||
``` | ||
|
||
The versions of `java-stellar-sdk` and `java-stellar-sdk-android-spi` should be maintained at the same version. | ||
|
||
The list of versions to install can be found in the [Releases](https://github.com/stellar/java-stellar-sdk-android-spi/releases) section. More information can be found in [jitpack.io docs](https://jitpack.io/docs/). | ||
You can find instructions on how to install this dependency using alternative package | ||
managers [here](https://central.sonatype.com/artifact/network.lightsail/stellar-sdk-android-spi). | ||
|
||
### JAR | ||
|
||
Download the latest jar from the GitHub repo's [releases tab](https://github.com/stellar/java-stellar-sdk-android-spi/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-android-spi/releases). Add the `jar` package | ||
to your project according to how your environment is set up. |
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,4 +1,4 @@ | ||
before_install: | ||
- sdk install java 17.0.8.1-ms | ||
- sdk use java 17.0.8.1-ms | ||
- sdk install java 21.0.2-ms | ||
- sdk use java 21.0.2-ms | ||
|
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,2 +1,2 @@ | ||
rootProject.name = "java-stellar-sdk-android-spi" | ||
rootProject.name = "stellar-sdk-android-spi" | ||
|