From c7c566ce0f12221088a8908b6dc8e116c56a931b Mon Sep 17 00:00:00 2001 From: Dave Leeds Date: Sat, 5 Jan 2019 02:51:21 -0600 Subject: [PATCH] Update FAQ to use module-name instead of module_name (#2509) --- FAQ.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FAQ.md b/FAQ.md index 2c4f5a536b4..735e77b6806 100644 --- a/FAQ.md +++ b/FAQ.md @@ -52,7 +52,7 @@ or set it via the `JAVA_OPTS` environment variable. ### Q: How do I specify a custom Objective-C prefix/name for my Kotlin framework? -A: Use the `-module_name` compiler option or matching Gradle DSL statement, i.e. +A: Use the `-module-name` compiler option or matching Gradle DSL statement, i.e.
@@ -60,7 +60,7 @@ A: Use the `-module_name` compiler option or matching Gradle DSL statement, i.e. targets { fromPreset(presets.iosArm64, 'myapp') { compilations.main.outputKinds 'FRAMEWORK' - compilations.main.extraOpts '-module_name', 'TheName' + compilations.main.extraOpts '-module-name', 'TheName' } } ```