Skip to content

Commit

Permalink
chore: Make sure we can build without credentials + readme nits (#72)
Browse files Browse the repository at this point in the history
* chore: Make sure we can build without credentials + readme nits

* nit
  • Loading branch information
felipecsl authored Jun 24, 2024
1 parent e8a02ad commit ba02648
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Eppo Android SDK

[Eppo](https://www.geteppo.com) is a feature management and experimentation platform. This SDK enables feature flagging
and experimentation for customers of Eppo. An API key is required to use this SDK.
[Eppo](https://geteppo.com) is a feature management and experimentation platform. This SDK enables
feature flagging and experimentation for Eppo customers. An API key is required to use it.

## Usage

Expand All @@ -12,6 +12,7 @@ dependencies {
implementation 'cloud.eppo:android-sdk:3.0.1'
}
```
Snapshots of the development version are available in [Sonatype's snapshots repository](https://s01.oss.sonatype.org/content/repositories/snapshots/).

## Getting Started
For information on usage, refer to our [SDK Documentation](https://docs.geteppo.com/sdks/client-sdks/android/).
4 changes: 2 additions & 2 deletions eppo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ publishing {
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = ossrhUsername
password = ossrhPassword
username = project.properties.containsKey("ossrhUsername") ? project.properties["ossrhUsername"] : ""
password = project.properties.containsKey("ossrhPassword") ? project.properties["ossrhPassword"] : ""
}
}
}
Expand Down

0 comments on commit ba02648

Please sign in to comment.