Skip to content

Commit 6e5433f

Browse files
committed
fix: add kotlin to platforms
1 parent 179cbfb commit 6e5433f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/cli/src/brownie/commands/codegen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ export async function runCodegen({ platform }: RunCodegenOptions) {
118118
if (platform) {
119119
platforms = [platform];
120120
} else {
121-
// Only generate Swift by default (Kotlin not yet released)
122-
platforms = ['swift'];
121+
// Generate both Swift and Kotlin by default
122+
platforms = ['swift', 'kotlin'];
123123
}
124124

125125
await generateForStore(store, config, platforms, isMultipleStores);

0 commit comments

Comments
 (0)