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: example.php
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
useAppwrite\SDK\Language\DotNet;
19
19
useAppwrite\SDK\Language\Flutter;
20
20
useAppwrite\SDK\Language\Android;
21
+
useAppwrite\SDK\Language\Kotlin;
21
22
22
23
try {
23
24
@@ -393,6 +394,30 @@ function getSSLPage($url) {
393
394
])
394
395
;
395
396
$sdk->generate(__DIR__ . '/examples/android');
397
+
398
+
// Kotlin
399
+
$sdk = newSDK(newKotlin(), newSwagger2($spec));
400
+
401
+
$sdk
402
+
->setName('Kotlin')
403
+
->setNamespace('io appwrite')
404
+
->setDescription('Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Flutter SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to https://appwrite.io/docs')
0 commit comments