Skip to content

Commit ba02648

Browse files
authored
chore: Make sure we can build without credentials + readme nits (#72)
* chore: Make sure we can build without credentials + readme nits * nit
1 parent e8a02ad commit ba02648

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Eppo Android SDK
22

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

66
## Usage
77

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

1617
## Getting Started
1718
For information on usage, refer to our [SDK Documentation](https://docs.geteppo.com/sdks/client-sdks/android/).

eppo/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ publishing {
151151
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
152152
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
153153
credentials {
154-
username = ossrhUsername
155-
password = ossrhPassword
154+
username = project.properties.containsKey("ossrhUsername") ? project.properties["ossrhUsername"] : ""
155+
password = project.properties.containsKey("ossrhPassword") ? project.properties["ossrhPassword"] : ""
156156
}
157157
}
158158
}

0 commit comments

Comments
 (0)