Skip to content

Commit

Permalink
fix readme package names
Browse files Browse the repository at this point in the history
  • Loading branch information
compscidr committed Oct 31, 2024
1 parent 799a323 commit 2c99d07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The android library depends on the android.system.Os.socket() method. The common
this method + some other native methods so that the library can be used on both Android and Linux
JVM implementations.
```kotlin
implementation("com.jasonernst.icmp:icmp-android")
implementation("com.jasonernst.icmp:icmp_android")
```

Using the Library:
Expand All @@ -49,7 +49,7 @@ the .so is produced as a separate artifact and then included in the library as a
location of the .so file is added to the java.library.path. This is a future improvement.

```kotlin
implementation("com.jasonernst.icmp:icmp-linux")
implementation("com.jasonernst.icmp:icmp_linux")
```

Using the library:
Expand Down Expand Up @@ -84,7 +84,7 @@ that the pings go through the VPN interface.

## Building a library that may be used on both Android and Linux JVM:
```kotlin
api("com.jasonernst.icmp:icmp-common")
api("com.jasonernst.icmp:icmp_common")
```

```kotlin
Expand Down

0 comments on commit 2c99d07

Please sign in to comment.