File tree 1 file changed +15
-15
lines changed
Sources/NoonianKit/Android/Commands
1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -81,24 +81,24 @@ public struct InitOptions: OptionsProtocol {
81
81
public static func evaluate( _ m: CommandMode ) -> Result < InitOptions , CommandantError < NoonianKitError > > {
82
82
return curry ( InitOptions . init)
83
83
<*> m <| Option (
84
- key: " path " ,
85
- defaultValue: nil ,
86
- usage: " The directory to create the project in. Defaults to <Project Name> in the current directory. "
84
+ key: " path " ,
85
+ defaultValue: nil ,
86
+ usage: " The directory to create the project in. Defaults to <Project Name> in the current directory. "
87
87
)
88
- <*> m <| Option < String ? > (
89
- key: " activity " ,
90
- defaultValue: nil ,
91
- usage: " The name of the activity. Defaults to Main. "
88
+ <*> m <| Option (
89
+ key: " activity " ,
90
+ defaultValue: nil ,
91
+ usage: " The name of the activity. Defaults to Main. "
92
92
)
93
- <*> m <| Option < String ? > (
94
- key: " target " ,
95
- defaultValue: nil ,
96
- usage: " The target to build for. Specify by target name and not ID. Defaults to android-25 (7.1). "
93
+ <*> m <| Option (
94
+ key: " target " ,
95
+ defaultValue: nil ,
96
+ usage: " The target to build for. Specify by target name and not ID. Defaults to android-25 (7.1). "
97
97
)
98
- <*> m <| Option < String ? > (
99
- key: " package " ,
100
- defaultValue: nil ,
101
- usage: " The package name. Defaults to com.example.<project>. "
98
+ <*> m <| Option (
99
+ key: " package " ,
100
+ defaultValue: nil ,
101
+ usage: " The package name. Defaults to com.example.<project>. "
102
102
)
103
103
<*> m <| Argument ( usage: " the project name " )
104
104
}
You can’t perform that action at this time.
0 commit comments