File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Eppo Android SDK
2
2
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 .
5
5
6
6
## Usage
7
7
@@ -12,6 +12,7 @@ dependencies {
12
12
implementation 'cloud.eppo:android-sdk:3.0.1'
13
13
}
14
14
```
15
+ Snapshots of the development version are available in [ Sonatype's snapshots repository] ( https://s01.oss.sonatype.org/content/repositories/snapshots/ ) .
15
16
16
17
## Getting Started
17
18
For information on usage, refer to our [ SDK Documentation] ( https://docs.geteppo.com/sdks/client-sdks/android/ ) .
Original file line number Diff line number Diff line change @@ -151,8 +151,8 @@ publishing {
151
151
def snapshotsRepoUrl = " https://s01.oss.sonatype.org/content/repositories/snapshots/"
152
152
url = version. endsWith(' SNAPSHOT' ) ? snapshotsRepoUrl : releasesRepoUrl
153
153
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 " ] : " "
156
156
}
157
157
}
158
158
}
You can’t perform that action at this time.
0 commit comments