@@ -445,10 +445,10 @@ function getSSLPage($url) {
445445<p>Initialize your SDK code with your project ID, which can be found in your project settings page.
446446
447447```kotlin
448- import io.appwrite.AppwriteClient
449- import io.appwrite.services.AccountService
448+ import io.appwrite.Client
449+ import io.appwrite.services.Account
450450
451- val client = AppwriteClient (context)
451+ val client = Client (context)
452452 .setEndpoint( \"https://[HOSTNAME_OR_IP]/v1 \") // Your API Endpoint
453453 .setProject( \"5df5acd0d48c2 \") // Your project ID
454454 .setSelfSigned(true) // Remove in production
@@ -464,7 +464,7 @@ function getSSLPage($url) {
464464
465465```kotlin
466466// Register User
467- val accountService = AccountService (client)
467+ val accountService = Account (client)
468468val user = accountService.create(
469469470470 \"password \"
@@ -474,15 +474,15 @@ function getSSLPage($url) {
474474### Full Example
475475
476476```kotlin
477- import io.appwrite.AppwriteClient
478- import io.appwrite.services.AccountService
477+ import io.appwrite.Client
478+ import io.appwrite.services.Account
479479
480- val client = AppwriteClient (context)
480+ val client = Client (context)
481481 .setEndpoint( \"https://[HOSTNAME_OR_IP]/v1 \") // Your API Endpoint
482482 .setProject( \"5df5acd0d48c2 \") // Your project ID
483483 .setSelfSigned(true) // Remove in production
484484
485- val accountService = AccountService (client)
485+ val accountService = Account (client)
486486val user = accountService.create(
487487488488 \"password \"
0 commit comments