Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: rename repository #138

Merged
merged 2 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Provider/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ publishing {
pom {
name.set("Confidence Openfeature Provider Android")
description.set("An Openfeature Provider for Confidence, made for the Android SDK")
url.set("https://github.com/spotify/confidence-openfeature-provider-kotlin")
url.set("https://github.com/spotify/confidence-sdk-android")
licenses {
license {
name.set("The Apache License, Version 2.0")
Expand Down Expand Up @@ -104,12 +104,12 @@ publishing {
}
scm {
connection.set(
"scm:git:git://spotify/confidence-openfeature-provider-kotlin.git"
"scm:git:git://spotify/confidence-sdk-android.git"
)
developerConnection.set(
"scm:git:ssh://spotify/confidence-openfeature-provider-kotlin.git"
"scm:git:ssh://spotify/confidence-sdk-android.git"
)
url.set("https://github.com/spotify/confidence-openfeature-provider-kotlin")
url.set("https://github.com/spotify/confidence-sdk-android")
}
}
afterEvaluate {
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![](https://jitpack.io/v/spotify/confidence-openfeature-provider-kotlin.svg)](https://jitpack.io/#spotify/confidence-openfeature-provider-kotlin)
[![](https://jitpack.io/v/spotify/confidence-sdk-android.svg)](https://jitpack.io/#spotify/confidence-sdk-android)
<a href="https://maven-badges.herokuapp.com/maven-central/com.spotify.confidence/openfeature-provider-android">
<img alt="Maven Central" src="https://maven-badges.herokuapp.com/maven-central/com.spotify.confidence/openfeature-provider-android/badge.svg" />
</a>
Expand All @@ -18,11 +18,11 @@ implementation("com.spotify.confidence:openfeature-provider-android:0.1.7")
```
It can also be consumed from jitpack for using any branch or build:
```
implementation("com.github.spotify:confidence-openfeature-provider-kotlin:[BRANCH]-[SNAPSHOT/Version]")
implementation("com.github.spotify:confidence-sdk-android:[BRANCH]-[SNAPSHOT/Version]")
```
for using specific commit:
```
implementation("com.github.spotify:confidence-openfeature-provider-kotlin:[COMMIT SHA]")
implementation("com.github.spotify:confidence-sdk-android:[COMMIT SHA]")
```

nickybondarenko marked this conversation as resolved.
Show resolved Hide resolved
Where `0.1.7` is the most recent version of this SDK. Released versions can be found under "Releases" within this repository.
Expand Down
2 changes: 1 addition & 1 deletion catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: confidence-openfeature-provider-kotlin
name: confidence-sdk-android
spec:
type: library
owner: hawkeye
Loading