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
7a0ebad0
Unverified
Commit
7a0ebad0
authored
Apr 30, 2018
by
Mikkel Nygaard Ravn
Committed by
GitHub
Apr 30, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Flutter tools recommend using Cocoapods 1.5.0 (#16971)" (#17110)
This reverts commit
6e26cc28
.
parent
6e26cc28
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
107 additions
and
210 deletions
+107
-210
context_runner.dart
packages/flutter_tools/lib/src/context_runner.dart
+1
-1
cocoapods.dart
packages/flutter_tools/lib/src/ios/cocoapods.dart
+25
-68
ios_workflow.dart
packages/flutter_tools/lib/src/ios/ios_workflow.dart
+3
-5
plugins.dart
packages/flutter_tools/lib/src/plugins.dart
+1
-1
cocoapods_test.dart
packages/flutter_tools/test/ios/cocoapods_test.dart
+63
-127
ios_workflow_test.dart
packages/flutter_tools/test/ios/ios_workflow_test.dart
+14
-8
No files found.
packages/flutter_tools/lib/src/context_runner.dart
View file @
7a0ebad0
...
...
@@ -52,7 +52,7 @@ Future<T> runInContext<T>(
BotDetector:
()
=>
const
BotDetector
(),
Cache:
()
=>
new
Cache
(),
Clock:
()
=>
const
Clock
(),
CocoaPods:
()
=>
new
CocoaPods
(),
CocoaPods:
()
=>
const
CocoaPods
(),
Config:
()
=>
new
Config
(),
DevFSConfig:
()
=>
new
DevFSConfig
(),
DeviceManager:
()
=>
new
DeviceManager
(),
...
...
packages/flutter_tools/lib/src/ios/cocoapods.dart
View file @
7a0ebad0
...
...
@@ -33,46 +33,25 @@ const String cocoaPodsUpgradeInstructions = '''
CocoaPods
get
cocoaPods
=>
context
[
CocoaPods
];
/// Result of evaluating the CocoaPods installation.
enum
CocoaPodsStatus
{
/// iOS plugins will not work, installation required.
notInstalled
,
/// iOS plugins will not work, upgrade required.
belowMinimumVersion
,
/// iOS plugins may not work in certain situations (Swift, static libraries),
/// upgrade recommended.
belowRecommendedVersion
,
/// Everything should be fine.
recommended
,
}
class
CocoaPods
{
Future
<
String
>
_versionText
;
const
CocoaPods
();
Future
<
bool
>
get
hasCocoaPods
=>
exitsHappyAsync
(<
String
>[
'pod'
,
'--version'
]);
// TODO(mravn): Insist on 1.5.0 once build bots have that installed.
// Earlier versions do not work with Swift and static libraries.
String
get
cocoaPodsMinimumVersion
=>
'1.0.0'
;
String
get
cocoaPodsRecommendedVersion
=>
'1.5.0'
;
Future
<
String
>
get
cocoaPodsVersionText
{
_versionText
??=
runAsync
(<
String
>[
'pod'
,
'--version'
]).
then
<
String
>((
RunResult
result
)
{
return
result
.
exitCode
==
0
?
result
.
stdout
.
trim
()
:
null
;
});
return
_versionText
;
}
Future
<
String
>
get
cocoaPodsVersionText
async
=>
(
await
runAsync
(<
String
>[
'pod'
,
'--version'
])).
processResult
.
stdout
.
trim
();
Future
<
CocoaPodsStatus
>
get
evaluateCocoaPodsInstallation
async
{
final
String
versionText
=
await
cocoaPodsVersionText
;
if
(
versionText
==
null
)
return
CocoaPodsStatus
.
notInstalled
;
Future
<
bool
>
get
isCocoaPodsInstalledAndMeetsVersionCheck
async
{
if
(!
await
hasCocoaPods
)
return
false
;
try
{
final
Version
installedVersion
=
new
Version
.
parse
(
versionText
);
if
(
installedVersion
<
new
Version
.
parse
(
cocoaPodsMinimumVersion
))
return
CocoaPodsStatus
.
belowMinimumVersion
;
else
if
(
installedVersion
<
new
Version
.
parse
(
cocoaPodsRecommendedVersion
))
return
CocoaPodsStatus
.
belowRecommendedVersion
;
else
return
CocoaPodsStatus
.
recommended
;
final
Version
installedVersion
=
new
Version
.
parse
(
await
cocoaPodsVersionText
);
return
installedVersion
>=
new
Version
.
parse
(
cocoaPodsMinimumVersion
);
}
on
FormatException
{
return
CocoaPodsStatus
.
notInstalled
;
return
false
;
}
}
...
...
@@ -98,37 +77,16 @@ class CocoaPods {
/// Make sure the CocoaPods tools are in the right states.
Future
<
bool
>
_checkPodCondition
()
async
{
final
CocoaPodsStatus
installation
=
await
evaluateCocoaPodsInstallation
;
switch
(
installation
)
{
case
CocoaPodsStatus
.
notInstalled
:
printError
(
'Warning: CocoaPods not installed. Skipping pod install.
\n
'
'
$noCocoaPodsConsequence
\n
'
'To install:
\n
'
'
$cocoaPodsInstallInstructions
\n
'
,
emphasis:
true
,
);
return
false
;
case
CocoaPodsStatus
.
belowMinimumVersion
:
printError
(
'Warning: CocoaPods minimum required version
$cocoaPodsMinimumVersion
or greater not installed. Skipping pod install.
\n
'
'
$noCocoaPodsConsequence
\n
'
'To upgrade:
\n
'
'
$cocoaPodsUpgradeInstructions
\n
'
,
emphasis:
true
,
);
return
false
;
case
CocoaPodsStatus
.
belowRecommendedVersion
:
printError
(
'Warning: CocoaPods recommended version
$cocoaPodsRecommendedVersion
or greater not installed.
\n
'
'Pods handling may fail on some projects involving plugins.
\n
'
'To upgrade:
\n
'
'
$cocoaPodsUpgradeInstructions
\n
'
,
emphasis:
true
,
);
break
;
default
:
break
;
if
(!
await
isCocoaPodsInstalledAndMeetsVersionCheck
)
{
final
String
minimumVersion
=
cocoaPodsMinimumVersion
;
printError
(
'Warning: CocoaPods version
$minimumVersion
or greater not installed. Skipping pod install.
\n
'
'
$noCocoaPodsConsequence
\n
'
'To install:
\n
'
'
$cocoaPodsInstallInstructions
\n
'
,
emphasis:
true
,
);
return
false
;
}
if
(!
await
isCocoaPodsInitialized
)
{
printError
(
...
...
@@ -196,19 +154,18 @@ class CocoaPods {
// Check if you need to run pod install.
// The pod install will run if any of below is true.
// 1. The flutter.framework has changed (debug/release/profile)
// 2. The
Podfile.lock doesn't exist or is older than Podfile
// 2. The
podfile.lock doesn't exist
// 3. The Pods/Manifest.lock doesn't exist (It is deleted when plugins change)
// 4. The
P
odfile.lock doesn't match Pods/Manifest.lock.
// 4. The
p
odfile.lock doesn't match Pods/Manifest.lock.
bool
_shouldRunPodInstall
(
Directory
appIosDirectory
,
bool
flutterPodChanged
)
{
if
(
flutterPodChanged
)
return
true
;
final
File
podfileFile
=
appIosDirectory
.
childFile
(
'Podfile'
);
// Check if podfile.lock and Pods/Manifest.lock exist and match.
final
File
podfileLockFile
=
appIosDirectory
.
childFile
(
'Podfile.lock'
);
final
File
manifestLockFile
=
appIosDirectory
.
childFile
(
fs
.
path
.
join
(
'Pods'
,
'Manifest.lock'
));
return
!
podfileLockFile
.
existsSync
()
||
!
manifestLockFile
.
existsSync
()
||
podfileLockFile
.
statSync
().
modified
.
isBefore
(
podfileFile
.
statSync
().
modified
)
||
podfileLockFile
.
readAsStringSync
()
!=
manifestLockFile
.
readAsStringSync
();
}
...
...
packages/flutter_tools/lib/src/ios/ios_workflow.dart
View file @
7a0ebad0
...
...
@@ -171,9 +171,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
}
}
final
CocoaPodsStatus
cocoaPodsStatus
=
await
cocoaPods
.
evaluateCocoaPodsInstallation
;
if
(
cocoaPodsStatus
==
CocoaPodsStatus
.
recommended
)
{
if
(
await
cocoaPods
.
isCocoaPodsInstalledAndMeetsVersionCheck
)
{
if
(
await
cocoaPods
.
isCocoaPodsInitialized
)
{
messages
.
add
(
new
ValidationMessage
(
'CocoaPods version
${await cocoaPods.cocoaPodsVersionText}
'
));
}
else
{
...
...
@@ -188,7 +186,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
}
}
else
{
brewStatus
=
ValidationType
.
partial
;
if
(
cocoaPodsStatus
==
CocoaPodsStatus
.
notInstalled
)
{
if
(
!
await
cocoaPods
.
hasCocoaPods
)
{
messages
.
add
(
new
ValidationMessage
.
error
(
'CocoaPods not installed.
\n
'
'
$noCocoaPodsConsequence
\n
'
...
...
@@ -197,7 +195,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
));
}
else
{
messages
.
add
(
new
ValidationMessage
.
error
(
'CocoaPods out of date (
$
{cocoaPods.cocoaPodsRecommendedVersion}
is recommend
ed).
\n
'
'CocoaPods out of date (
$
cocoaPods
.cocoaPodsMinimumVersion is requir
ed).
\n
'
'
$noCocoaPodsConsequence
\n
'
'To upgrade:
\n
'
'
$cocoaPodsUpgradeInstructions
'
...
...
packages/flutter_tools/lib/src/plugins.dart
View file @
7a0ebad0
...
...
@@ -238,7 +238,7 @@ void injectPlugins({String directory}) {
_writeAndroidPluginRegistrant
(
directory
,
plugins
);
if
(
fs
.
isDirectorySync
(
fs
.
path
.
join
(
directory
,
'ios'
)))
{
_writeIOSPluginRegistrant
(
directory
,
plugins
);
final
CocoaPods
cocoaPods
=
new
CocoaPods
();
const
CocoaPods
cocoaPods
=
const
CocoaPods
();
if
(
plugins
.
isNotEmpty
)
cocoaPods
.
setupPodfile
(
directory
);
if
(
changed
)
...
...
packages/flutter_tools/test/ios/cocoapods_test.dart
View file @
7a0ebad0
This diff is collapsed.
Click to expand it.
packages/flutter_tools/test/ios/ios_workflow_test.dart
View file @
7a0ebad0
...
...
@@ -33,10 +33,10 @@ void main() {
cocoaPods
=
new
MockCocoaPods
();
fs
=
new
MemoryFileSystem
();
when
(
cocoaPods
.
evaluateCocoaPodsInstallation
)
.
thenAnswer
((
_
)
async
=>
CocoaPodsStatus
.
recommended
);
when
(
cocoaPods
.
isCocoaPodsInitialized
)
.
thenAnswer
((
_
)
async
=>
true
);
when
(
cocoaPods
.
cocoaPodsVersionText
).
thenAnswer
((
_
)
async
=>
'1.8.0'
);
when
(
cocoaPods
.
isCocoaPodsInstalledAndMeetsVersionCheck
)
.
thenAnswer
((
_
)
=>
new
Future
<
bool
>.
value
(
true
)
);
when
(
cocoaPods
.
isCocoaPodsInitialized
)
.
thenAnswer
((
_
)
=>
new
Future
<
bool
>.
value
(
true
)
);
});
testUsingContext
(
'Emit missing status when nothing is installed'
,
()
async
{
...
...
@@ -213,8 +213,9 @@ void main() {
.
thenReturn
(
'Xcode 8.2.1
\n
Build version 8C1002
\n
'
);
when
(
xcode
.
isInstalledAndMeetsVersionCheck
).
thenReturn
(
true
);
when
(
xcode
.
eulaSigned
).
thenReturn
(
true
);
when
(
cocoaPods
.
evaluateCocoaPodsInstallation
)
.
thenAnswer
((
_
)
async
=>
CocoaPodsStatus
.
notInstalled
);
when
(
cocoaPods
.
isCocoaPodsInstalledAndMeetsVersionCheck
)
.
thenAnswer
((
_
)
=>
new
Future
<
bool
>.
value
(
false
));
when
(
cocoaPods
.
hasCocoaPods
).
thenAnswer
((
_
)
=>
new
Future
<
bool
>.
value
(
false
));
when
(
xcode
.
isSimctlInstalled
).
thenReturn
(
true
);
final
IOSWorkflowTestTarget
workflow
=
new
IOSWorkflowTestTarget
();
final
ValidationResult
result
=
await
workflow
.
validate
();
...
...
@@ -231,8 +232,11 @@ void main() {
.
thenReturn
(
'Xcode 8.2.1
\n
Build version 8C1002
\n
'
);
when
(
xcode
.
isInstalledAndMeetsVersionCheck
).
thenReturn
(
true
);
when
(
xcode
.
eulaSigned
).
thenReturn
(
true
);
when
(
cocoaPods
.
evaluateCocoaPodsInstallation
)
.
thenAnswer
((
_
)
async
=>
CocoaPodsStatus
.
belowRecommendedVersion
);
when
(
cocoaPods
.
isCocoaPodsInstalledAndMeetsVersionCheck
)
.
thenAnswer
((
_
)
=>
new
Future
<
bool
>.
value
(
false
));
when
(
cocoaPods
.
hasCocoaPods
).
thenAnswer
((
_
)
=>
new
Future
<
bool
>.
value
(
true
));
when
(
cocoaPods
.
cocoaPodsVersionText
)
.
thenAnswer
((
_
)
=>
new
Future
<
String
>.
value
(
'0.39.0'
));
when
(
xcode
.
isSimctlInstalled
).
thenReturn
(
true
);
final
IOSWorkflowTestTarget
workflow
=
new
IOSWorkflowTestTarget
();
final
ValidationResult
result
=
await
workflow
.
validate
();
...
...
@@ -249,6 +253,8 @@ void main() {
.
thenReturn
(
'Xcode 8.2.1
\n
Build version 8C1002
\n
'
);
when
(
xcode
.
isInstalledAndMeetsVersionCheck
).
thenReturn
(
true
);
when
(
xcode
.
eulaSigned
).
thenReturn
(
true
);
when
(
cocoaPods
.
isCocoaPodsInstalledAndMeetsVersionCheck
).
thenAnswer
((
_
)
async
=>
false
);
when
(
cocoaPods
.
hasCocoaPods
).
thenAnswer
((
_
)
async
=>
true
);
when
(
cocoaPods
.
isCocoaPodsInitialized
).
thenAnswer
((
_
)
async
=>
false
);
when
(
xcode
.
isSimctlInstalled
).
thenReturn
(
true
);
...
...
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