You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/sources/catalog/libraries/mobile/kotlin-android/index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -446,21 +446,21 @@ If Segment doesn't support your Kotlin destination, you can build your own with
446
446
447
447
To build your own Kotlin destination using a plugin template:
448
448
449
-
1. Go to the [Kotlin Destination Plugin Template](https://github.com/segmentio/kotlin-destination-templates){:target="_blank"}.
449
+
1. Go to the [Kotlin Destination Plugin Template](https://github.com/segment-integrations/analytics-kotlin-destination-template){:target="_blank"}.
450
450
2. Click **Use this template**.
451
451
3. Enter a name for the repository.
452
452
4. Click **Create repository from template**.
453
-
5. Go to **destination > src > main > java/dmn/your/pkg/destination** in your repository.
454
-
6. Click the **ExampleDestination.kt**.
453
+
5. Go to **lib > src > main > java/dmn/your/pkg/destination** in your repository.
454
+
6. Click the **MyDestination.kt**.
455
455
7. Complete the `TODO` sections in the sample code with the appropriate information for your destination. Segment recommends you to change the package name before you finalize your build.
456
456
8. Commit your changes.
457
457
458
458
You can unit test your destination to make sure it works. Segment recommends you to use the testing template as a starter and to build upon it to get test coverage of most scenarios.
459
459
460
460
To test your destination:
461
461
462
-
1. Go to **destination > src > test > java/dmn/your/pkg/destination**.
463
-
2. Click **ExampleDestinationTests.kt**.
462
+
1. Go to **lib > src > test > java/dmn/your/pkg/destination**.
463
+
2. Click **MyDestinationTests.kt**.
464
464
3. Complete the `TODO` sections in the sample code with the appropriate information for your destination.
0 commit comments