Skip to content

Commit d1a9f16

Browse files
fix: Api configuration
1 parent 3116f22 commit d1a9f16

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [1.0.0] - 2024-03-28
5+
## [1.0.1]
6+
7+
### Fixed
8+
9+
- Api configuration.
10+
11+
## [1.0.0]
612

713
### Added
814

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ allprojects {
2121

2222
```kotlin
2323
dependencies {
24-
implementation 'com.github.KeyValueSoftwareSystems:siren-android-inbox:1.0.0'
24+
implementation 'com.github.KeyValueSoftwareSystems:siren-android-inbox:1.0.1'
2525
}
2626
```
2727

app/src/main/java/com/keyvalue/sirensampleapp/MainActivity.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ class MainActivity : ComponentActivity() {
120120
val sirenSDK =
121121
SirenSDK.getInstance(
122122
this,
123-
"userToken",
124-
"recipientId",
123+
"YOUR_USER_TOKEN",
124+
"YOUR_RECIPIENT_ID",
125125
object : ErrorCallback {
126126
override fun onError(jsonObject: JSONObject) {
127127
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
<string name="SIREN_BASE_URL">https://api.dev.sirenapp.io/</string>
3+
<string name="SIREN_BASE_URL">https://api.sirenapp.io/</string>
44
</resources>

0 commit comments

Comments
 (0)