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
e4df6b4e
Commit
e4df6b4e
authored
Jan 25, 2019
by
tonyzhao1
Committed by
Todd Volkert
Jan 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change the required version of adb, as older versions break hot reload. (#24746)
parent
8fcddbbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
android_device.dart
packages/flutter_tools/lib/src/android/android_device.dart
+2
-2
No files found.
packages/flutter_tools/lib/src/android/android_device.dart
View file @
e4df6b4e
...
...
@@ -172,7 +172,7 @@ class AndroidDevice extends Device {
if
(
majorVersion
==
1
&&
minorVersion
>
0
)
{
return
true
;
}
if
(
majorVersion
==
1
&&
minorVersion
==
0
&&
patchVersion
>=
3
2
)
{
if
(
majorVersion
==
1
&&
minorVersion
==
0
&&
patchVersion
>=
3
9
)
{
return
true
;
}
return
false
;
...
...
@@ -190,7 +190,7 @@ class AndroidDevice extends Device {
final
RunResult
adbVersion
=
await
runCheckedAsync
(<
String
>[
getAdbPath
(
androidSdk
),
'version'
]);
if
(
_isValidAdbVersion
(
adbVersion
.
stdout
))
return
true
;
printError
(
'The ADB at "
${getAdbPath(androidSdk)}
" is too old; please install version 1.0.3
2
or later.'
);
printError
(
'The ADB at "
${getAdbPath(androidSdk)}
" is too old; please install version 1.0.3
9
or later.'
);
}
catch
(
error
,
trace
)
{
printError
(
'Error running ADB:
$error
'
,
stackTrace:
trace
);
}
...
...
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