Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
flutter_boost_1.22.4
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李增强
flutter_boost_1.22.4
Commits
299ed053
Commit
299ed053
authored
Feb 26, 2020
by
ytty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
只在 doInitialFlutter 调用 createEngine,其他只检查mEngine
parent
e949c0e5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
13 deletions
+7
-13
android/src/main/java/com/idlefish/flutterboost/FlutterBoost.java
...src/main/java/com/idlefish/flutterboost/FlutterBoost.java
+7
-13
No files found.
android/src/main/java/com/idlefish/flutterboost/FlutterBoost.java
View file @
299ed053
...
...
@@ -14,12 +14,10 @@ import io.flutter.embedding.engine.dart.DartExecutor;
import
io.flutter.plugin.common.PluginRegistry
;
import
io.flutter.view.FlutterMain
;
import
java.lang.reflect.Method
;
import
java.util.HashMap
;
import
java.util.Map
;
public
class
FlutterBoost
{
private
Platform
mPlatform
;
private
FlutterViewContainerManager
mManager
;
...
...
@@ -68,9 +66,7 @@ public class FlutterBoost {
}
if
(
mPlatform
.
whenEngineStart
()
==
ConfigBuilder
.
IMMEDIATELY
)
{
boostPluginRegistry
();
}
}
@Override
...
...
@@ -81,7 +77,7 @@ public class FlutterBoost {
if
(
mCurrentActiveActivity
==
null
)
{
Debuger
.
log
(
"Application entry foreground"
);
if
(
createEngine
()
!=
null
)
{
if
(
mEngine
!=
null
)
{
HashMap
<
String
,
String
>
map
=
new
HashMap
<>();
map
.
put
(
"type"
,
"foreground"
);
channel
().
sendEvent
(
"lifecycle"
,
map
);
...
...
@@ -113,7 +109,7 @@ public class FlutterBoost {
if
(
mCurrentActiveActivity
==
activity
)
{
Debuger
.
log
(
"Application entry background"
);
if
(
createEngine
()
!=
null
)
{
if
(
mEngine
!=
null
)
{
HashMap
<
String
,
String
>
map
=
new
HashMap
<>();
map
.
put
(
"type"
,
"background"
);
channel
().
sendEvent
(
"lifecycle"
,
map
);
...
...
@@ -137,7 +133,7 @@ public class FlutterBoost {
if
(
mCurrentActiveActivity
==
activity
)
{
Debuger
.
log
(
"Application entry background"
);
if
(
createEngine
()
!=
null
)
{
if
(
mEngine
!=
null
)
{
HashMap
<
String
,
String
>
map
=
new
HashMap
<>();
map
.
put
(
"type"
,
"background"
);
channel
().
sendEvent
(
"lifecycle"
,
map
);
...
...
@@ -158,9 +154,9 @@ public class FlutterBoost {
}
public
void
doInitialFlutter
()
{
if
(
mEngine
!=
null
)
return
;
if
(
mEngine
!=
null
)
{
return
;
}
if
(
mPlatform
.
lifecycleListener
!=
null
)
{
mPlatform
.
lifecycleListener
.
beforeCreateEngine
();
...
...
@@ -182,8 +178,7 @@ public class FlutterBoost {
);
flutterEngine
.
getDartExecutor
().
executeDartEntrypoint
(
entrypoint
);
mRegistry
=
new
BoostPluginRegistry
(
createEngine
());
mRegistry
=
new
BoostPluginRegistry
(
mEngine
);
}
public
void
boostPluginRegistry
(){
...
...
@@ -329,7 +324,6 @@ public class FlutterBoost {
private
FlutterEngine
createEngine
()
{
if
(
mEngine
==
null
)
{
FlutterMain
.
startInitialization
(
mPlatform
.
getApplication
());
FlutterShellArgs
flutterShellArgs
=
new
FlutterShellArgs
(
new
String
[
0
]);
...
...
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