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
0
Merge Requests
0
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
6e85312e
Commit
6e85312e
authored
Mar 31, 2020
by
justin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge branch 'master' into v1.12.13-hotfixes
parent
d0a89f4e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
11 deletions
+6
-11
android/src/main/java/com/idlefish/flutterboost/FlutterBoost.java
...src/main/java/com/idlefish/flutterboost/FlutterBoost.java
+6
-11
No files found.
android/src/main/java/com/idlefish/flutterboost/FlutterBoost.java
View file @
6e85312e
...
@@ -18,12 +18,10 @@ import io.flutter.embedding.engine.dart.DartExecutor;
...
@@ -18,12 +18,10 @@ import io.flutter.embedding.engine.dart.DartExecutor;
import
io.flutter.embedding.engine.loader.FlutterLoader
;
import
io.flutter.embedding.engine.loader.FlutterLoader
;
import
io.flutter.view.FlutterMain
;
import
io.flutter.view.FlutterMain
;
import
java.lang.reflect.Method
;
import
java.util.HashMap
;
import
java.util.HashMap
;
import
java.util.Map
;
import
java.util.Map
;
public
class
FlutterBoost
{
public
class
FlutterBoost
{
private
Platform
mPlatform
;
private
Platform
mPlatform
;
private
FlutterViewContainerManager
mManager
;
private
FlutterViewContainerManager
mManager
;
...
@@ -72,7 +70,6 @@ public class FlutterBoost {
...
@@ -72,7 +70,6 @@ public class FlutterBoost {
if
(
mPlatform
.
whenEngineStart
()
==
ConfigBuilder
.
ANY_ACTIVITY_CREATED
)
{
if
(
mPlatform
.
whenEngineStart
()
==
ConfigBuilder
.
ANY_ACTIVITY_CREATED
)
{
doInitialFlutter
();
doInitialFlutter
();
}
}
}
}
@Override
@Override
...
@@ -83,7 +80,7 @@ public class FlutterBoost {
...
@@ -83,7 +80,7 @@ public class FlutterBoost {
if
(
mCurrentActiveActivity
==
null
)
{
if
(
mCurrentActiveActivity
==
null
)
{
Debuger
.
log
(
"Application entry foreground"
);
Debuger
.
log
(
"Application entry foreground"
);
if
(
createEngine
()
!=
null
)
{
if
(
mEngine
!=
null
)
{
HashMap
<
String
,
String
>
map
=
new
HashMap
<>();
HashMap
<
String
,
String
>
map
=
new
HashMap
<>();
map
.
put
(
"type"
,
"foreground"
);
map
.
put
(
"type"
,
"foreground"
);
channel
().
sendEvent
(
"lifecycle"
,
map
);
channel
().
sendEvent
(
"lifecycle"
,
map
);
...
@@ -115,7 +112,7 @@ public class FlutterBoost {
...
@@ -115,7 +112,7 @@ public class FlutterBoost {
if
(
mCurrentActiveActivity
==
activity
)
{
if
(
mCurrentActiveActivity
==
activity
)
{
Debuger
.
log
(
"Application entry background"
);
Debuger
.
log
(
"Application entry background"
);
if
(
createEngine
()
!=
null
)
{
if
(
mEngine
!=
null
)
{
HashMap
<
String
,
String
>
map
=
new
HashMap
<>();
HashMap
<
String
,
String
>
map
=
new
HashMap
<>();
map
.
put
(
"type"
,
"background"
);
map
.
put
(
"type"
,
"background"
);
channel
().
sendEvent
(
"lifecycle"
,
map
);
channel
().
sendEvent
(
"lifecycle"
,
map
);
...
@@ -139,7 +136,7 @@ public class FlutterBoost {
...
@@ -139,7 +136,7 @@ public class FlutterBoost {
if
(
mCurrentActiveActivity
==
activity
)
{
if
(
mCurrentActiveActivity
==
activity
)
{
Debuger
.
log
(
"Application entry background"
);
Debuger
.
log
(
"Application entry background"
);
if
(
createEngine
()
!=
null
)
{
if
(
mEngine
!=
null
)
{
HashMap
<
String
,
String
>
map
=
new
HashMap
<>();
HashMap
<
String
,
String
>
map
=
new
HashMap
<>();
map
.
put
(
"type"
,
"background"
);
map
.
put
(
"type"
,
"background"
);
channel
().
sendEvent
(
"lifecycle"
,
map
);
channel
().
sendEvent
(
"lifecycle"
,
map
);
...
@@ -160,9 +157,9 @@ public class FlutterBoost {
...
@@ -160,9 +157,9 @@ public class FlutterBoost {
}
}
public
void
doInitialFlutter
()
{
public
void
doInitialFlutter
()
{
if
(
mEngine
!=
null
)
{
return
;
if
(
mEngine
!=
null
)
return
;
}
if
(
mPlatform
.
lifecycleListener
!=
null
)
{
if
(
mPlatform
.
lifecycleListener
!=
null
)
{
mPlatform
.
lifecycleListener
.
beforeCreateEngine
();
mPlatform
.
lifecycleListener
.
beforeCreateEngine
();
...
@@ -184,7 +181,6 @@ public class FlutterBoost {
...
@@ -184,7 +181,6 @@ public class FlutterBoost {
);
);
flutterEngine
.
getDartExecutor
().
executeDartEntrypoint
(
entrypoint
);
flutterEngine
.
getDartExecutor
().
executeDartEntrypoint
(
entrypoint
);
}
}
...
@@ -320,7 +316,6 @@ public class FlutterBoost {
...
@@ -320,7 +316,6 @@ public class FlutterBoost {
private
FlutterEngine
createEngine
()
{
private
FlutterEngine
createEngine
()
{
if
(
mEngine
==
null
)
{
if
(
mEngine
==
null
)
{
FlutterMain
.
startInitialization
(
mPlatform
.
getApplication
());
FlutterMain
.
startInitialization
(
mPlatform
.
getApplication
());
FlutterShellArgs
flutterShellArgs
=
new
FlutterShellArgs
(
new
String
[
0
]);
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