Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit 339cf8a

Browse files
committed
chore: Change package name and fix readme table issues
1 parent d6023ee commit 339cf8a

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ posthog-kotlin is a Kotlin library to interact with the PostHog API.
66
## Features
77
posthog-kotlin currently supports the following features:
88

9-
| Feature | Implemented |
10-
| --- | --— |
11-
| Single/Batch events ||
12-
| Identify ||
9+
| Feature | Implemented |
10+
| --- |--- |
11+
| Single/Batch events | |
12+
| Identify | |
1313

1414
## Usage
1515
### Dependency

src/main/kotlin/dev/kezz/posthog/PostHog.kt src/main/kotlin/com/noxcrew/posthog/PostHog.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package dev.kezz.posthog
1+
package com.noxcrew.posthog
22

3-
import dev.kezz.posthog.internal.EventQueue
4-
import dev.kezz.posthog.internal.PostHogEvent
3+
import com.noxcrew.posthog.internal.EventQueue
4+
import com.noxcrew.posthog.internal.PostHogEvent
55
import kotlinx.coroutines.Job
66
import kotlinx.coroutines.SupervisorJob
77
import kotlinx.serialization.json.JsonObject

src/main/kotlin/dev/kezz/posthog/PostHogProperties.kt src/main/kotlin/com/noxcrew/posthog/PostHogProperties.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.kezz.posthog
1+
package com.noxcrew.posthog
22

33
import kotlinx.serialization.json.JsonElement
44
import kotlinx.serialization.json.JsonPrimitive

src/main/kotlin/dev/kezz/posthog/internal/ErrorResponse.kt src/main/kotlin/com/noxcrew/posthog/internal/ErrorResponse.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.kezz.posthog.internal
1+
package com.noxcrew.posthog.internal
22

33
import kotlinx.serialization.Serializable
44

src/main/kotlin/dev/kezz/posthog/internal/EventQueue.kt src/main/kotlin/com/noxcrew/posthog/internal/EventQueue.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package dev.kezz.posthog.internal
1+
package com.noxcrew.posthog.internal
22

3-
import dev.kezz.posthog.PostHog
3+
import com.noxcrew.posthog.PostHog
44
import kotlinx.coroutines.CoroutineName
55
import kotlinx.coroutines.CoroutineScope
66
import kotlinx.coroutines.Dispatchers

src/main/kotlin/dev/kezz/posthog/internal/InstantSerializer.kt src/main/kotlin/com/noxcrew/posthog/internal/InstantSerializer.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.kezz.posthog.internal
1+
package com.noxcrew.posthog.internal
22

33
import kotlinx.serialization.KSerializer
44
import kotlinx.serialization.descriptors.PrimitiveKind
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.kezz.posthog.internal
1+
package com.noxcrew.posthog.internal
22

33
/** A collection of PostHog constants. */
44
internal object PostHogConstants

src/main/kotlin/dev/kezz/posthog/internal/PostHogEvent.kt src/main/kotlin/com/noxcrew/posthog/internal/PostHogEvent.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.kezz.posthog.internal
1+
package com.noxcrew.posthog.internal
22

33
import kotlinx.serialization.json.JsonElement
44
import java.time.Instant

0 commit comments

Comments
 (0)