Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
ae7734ee
Commit
ae7734ee
authored
Mar 24, 2016
by
Alhaad Gokhale
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2861 from alhaad/run_mojo_with_url
Allow run_mojo command to run an app at a URL.
parents
7940e26b
58edc7ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
12 deletions
+24
-12
run_mojo.dart
packages/flutter_tools/lib/src/commands/run_mojo.dart
+24
-12
No files found.
packages/flutter_tools/lib/src/commands/run_mojo.dart
View file @
ae7734ee
...
...
@@ -86,7 +86,7 @@ class RunMojoCommand extends FlutterCommand {
return
result
;
}
Future
<
List
<
String
>>
_getShellConfig
(
String
bundlePath
)
async
{
Future
<
List
<
String
>>
_getShellConfig
(
String
targetApp
)
async
{
List
<
String
>
args
=
<
String
>[];
final
bool
useDevtools
=
_useDevtools
();
...
...
@@ -94,7 +94,6 @@ class RunMojoCommand extends FlutterCommand {
args
.
add
(
command
);
BuildConfiguration
config
=
_getCurrentHostConfig
();
final
String
appPath
=
_makePathAbsolute
(
bundlePath
);
String
flutterPath
;
if
(
config
==
null
||
config
.
type
==
BuildType
.
prebuilt
)
{
...
...
@@ -108,17 +107,30 @@ class RunMojoCommand extends FlutterCommand {
if
(
argResults
[
'android'
])
{
args
.
add
(
'--android'
);
final
String
appName
=
path
.
basename
(
appPath
);
final
String
appDir
=
path
.
dirname
(
appPath
);
args
.
add
(
'mojo:launcher http://app/
$appName
'
);
args
.
add
(
'--map-origin=http://app/=
$appDir
'
);
}
final
Uri
appUri
=
Uri
.
parse
(
targetApp
);
if
(
appUri
.
scheme
.
isEmpty
||
appUri
.
scheme
==
'file'
)
{
final
String
appPath
=
_makePathAbsolute
(
targetApp
);
if
(
argResults
[
'android'
])
{
final
String
appName
=
path
.
basename
(
appPath
);
final
String
appDir
=
path
.
dirname
(
appPath
);
args
.
add
(
'mojo:launcher http://app/
$appName
'
);
args
.
add
(
'--map-origin=http://app/=
$appDir
'
);
}
else
{
args
.
add
(
'mojo:launcher file://
$appPath
'
);
}
}
else
{
args
.
add
(
'mojo:launcher
$targetApp
'
);
}
// Add url-mapping for mojo:flutter.
if
(
argResults
[
'android'
])
{
final
String
flutterName
=
path
.
basename
(
flutterPath
);
final
String
flutterDir
=
path
.
dirname
(
flutterPath
);
args
.
add
(
'--map-origin=http://flutter/=
$flutterDir
'
);
args
.
add
(
'--url-mappings=mojo:flutter=http://flutter/
$flutterName
'
);
}
else
{
args
.
add
(
'mojo:launcher file://
$appPath
'
);
args
.
add
(
'--url-mappings=mojo:flutter=file://
$flutterPath
'
);
}
...
...
@@ -152,21 +164,21 @@ class RunMojoCommand extends FlutterCommand {
await
downloadToolchain
();
String
bundlePath
=
argResults
[
'app'
];
if
(
bundlePath
==
null
)
{
bundlePath
=
_kDefaultBundlePath
;
String
targetApp
=
argResults
[
'app'
];
if
(
targetApp
==
null
)
{
targetApp
=
_kDefaultBundlePath
;
String
mainPath
=
findMainDartFile
(
argResults
[
'target'
]);
int
result
=
await
flx
.
build
(
toolchain
,
mainPath:
mainPath
,
outputPath:
bundlePath
outputPath:
targetApp
);
if
(
result
!=
0
)
return
result
;
}
return
await
runCommandAndStreamOutput
(
await
_getShellConfig
(
bundlePath
));
return
await
runCommandAndStreamOutput
(
await
_getShellConfig
(
targetApp
));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment