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
5a4bb505
Unverified
Commit
5a4bb505
authored
Jun 16, 2020
by
Jenn Magder
Committed by
GitHub
Jun 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove last references to ideviceinstaller (#59508)
parent
42666df9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
10 deletions
+1
-10
codesign.dart
dev/bots/codesign.dart
+0
-1
artifacts.dart
packages/flutter_tools/lib/src/artifacts.dart
+0
-8
ios_workflow.dart
packages/flutter_tools/lib/src/ios/ios_workflow.dart
+1
-1
No files found.
dev/bots/codesign.dart
View file @
5a4bb505
...
...
@@ -68,7 +68,6 @@ List<String> get binariesWithEntitlements => List<String>.unmodifiable(<String>[
'idevicescreenshot'
,
'idevicesyslog'
,
'libimobiledevice.6.dylib'
,
'ideviceinstaller'
,
'libplist.3.dylib'
,
'iproxy'
,
'libusbmuxd.4.dylib'
,
...
...
packages/flutter_tools/lib/src/artifacts.dart
View file @
5a4bb505
...
...
@@ -45,7 +45,6 @@ enum Artifact {
iosDeploy
,
idevicesyslog
,
idevicescreenshot
,
ideviceinstaller
,
iproxy
,
/// The root of the Linux desktop sources.
linuxDesktopPath
,
...
...
@@ -116,8 +115,6 @@ String _artifactToFileName(Artifact artifact, [ TargetPlatform platform, BuildMo
return
'idevicesyslog'
;
case
Artifact
.
idevicescreenshot
:
return
'idevicescreenshot'
;
case
Artifact
.
ideviceinstaller
:
return
'ideviceinstaller'
;
case
Artifact
.
iproxy
:
return
'iproxy'
;
case
Artifact
.
linuxDesktopPath
:
...
...
@@ -272,9 +269,6 @@ class CachedArtifacts extends Artifacts {
case
Artifact
.
iosDeploy
:
final
String
artifactFileName
=
_artifactToFileName
(
artifact
);
return
_cache
.
getArtifactDirectory
(
'ios-deploy'
).
childFile
(
artifactFileName
).
path
;
case
Artifact
.
ideviceinstaller
:
final
String
artifactFileName
=
_artifactToFileName
(
artifact
);
return
_cache
.
getArtifactDirectory
(
'ideviceinstaller'
).
childFile
(
artifactFileName
).
path
;
case
Artifact
.
iproxy
:
final
String
artifactFileName
=
_artifactToFileName
(
artifact
);
return
_cache
.
getArtifactDirectory
(
'usbmuxd'
).
childFile
(
artifactFileName
).
path
;
...
...
@@ -533,8 +527,6 @@ class LocalEngineArtifacts extends Artifacts {
case
Artifact
.
idevicescreenshot
:
case
Artifact
.
idevicesyslog
:
return
_cache
.
getArtifactDirectory
(
'libimobiledevice'
).
childFile
(
artifactFileName
).
path
;
case
Artifact
.
ideviceinstaller
:
return
_cache
.
getArtifactDirectory
(
'ideviceinstaller'
).
childFile
(
artifactFileName
).
path
;
case
Artifact
.
iosDeploy
:
return
_cache
.
getArtifactDirectory
(
'ios-deploy'
).
childFile
(
artifactFileName
).
path
;
case
Artifact
.
iproxy
:
...
...
packages/flutter_tools/lib/src/ios/ios_workflow.dart
View file @
5a4bb505
...
...
@@ -15,7 +15,7 @@ class IOSWorkflow implements Workflow {
@override
bool
get
canListDevices
=>
globals
.
xcode
.
isInstalledAndMeetsVersionCheck
&&
globals
.
xcode
.
isSimctlInstalled
;
// We need xcode to launch simulator devices, and i
deviceinstaller and i
os-deploy
// We need xcode to launch simulator devices, and ios-deploy
// for real devices.
@override
bool
get
canLaunchDevices
=>
globals
.
xcode
.
isInstalledAndMeetsVersionCheck
;
...
...
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