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
c8c935cd
Commit
c8c935cd
authored
Jan 30, 2019
by
Todd Volkert
Committed by
Jonah Williams
Jan 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow bundle identifier to be surrounded with quotes. (#26300)
Picked up from #22498, originally by @jugyo
parent
763a8d6d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
6 deletions
+21
-6
project.dart
packages/flutter_tools/lib/src/project.dart
+2
-2
project_test.dart
packages/flutter_tools/test/project_test.dart
+19
-4
No files found.
packages/flutter_tools/lib/src/project.dart
View file @
c8c935cd
...
...
@@ -156,7 +156,7 @@ class IosProject {
/// The parent of this project.
final
FlutterProject
parent
;
static
final
RegExp
_productBundleIdPattern
=
RegExp
(
r'
^\s*PRODUCT_BUNDLE_IDENTIFIER\s*=\s*(.*);\s*$
'
);
static
final
RegExp
_productBundleIdPattern
=
RegExp
(
r'
'
'^
\
s*PRODUCT_BUNDLE_IDENTIFIER
\
s*=
\
s*(["'
]?)(.*?)
\
1
;
\
s
*
$
''
');
static const String _productBundleIdVariable = r'
$
(
PRODUCT_BUNDLE_IDENTIFIER
)
';
static const String _hostAppBundleName = '
Runner
';
...
...
@@ -225,7 +225,7 @@ class IosProject {
// Info.plist has no build variables in product bundle ID.
return fromPlist;
}
final
String
fromPbxproj
=
_firstMatchInFile
(
xcodeProjectInfoFile
,
_productBundleIdPattern
)?.
group
(
1
);
final String fromPbxproj = _firstMatchInFile(xcodeProjectInfoFile, _productBundleIdPattern)?.group(
2
);
if (fromPbxproj != null && (fromPlist == null || fromPlist == _productBundleIdVariable)) {
// Common case. Avoids parsing build settings.
return fromPbxproj;
...
...
packages/flutter_tools/test/project_test.dart
View file @
c8c935cd
...
...
@@ -271,6 +271,21 @@ void main() {
when
(
mockIOSWorkflow
.
getPlistValueFromFile
(
any
,
any
)).
thenReturn
(
'
\$
(PRODUCT_BUNDLE_IDENTIFIER).
\$
(SUFFIX)'
);
expect
(
project
.
ios
.
productBundleIdentifier
,
'io.flutter.someProject.suffix'
);
});
testWithMocks
(
'empty surrounded by quotes'
,
()
async
{
final
FlutterProject
project
=
await
someProject
();
addIosWithBundleId
(
project
.
directory
,
''
,
qualifier:
'"'
);
expect
(
project
.
ios
.
productBundleIdentifier
,
''
);
});
testWithMocks
(
'surrounded by double quotes'
,
()
async
{
final
FlutterProject
project
=
await
someProject
();
addIosWithBundleId
(
project
.
directory
,
'io.flutter.someProject'
,
qualifier:
'"'
);
expect
(
project
.
ios
.
productBundleIdentifier
,
'io.flutter.someProject'
);
});
testWithMocks
(
'surrounded by single quotes'
,
()
async
{
final
FlutterProject
project
=
await
someProject
();
addIosWithBundleId
(
project
.
directory
,
'io.flutter.someProject'
,
qualifier:
'
\'
'
);
expect
(
project
.
ios
.
productBundleIdentifier
,
'io.flutter.someProject'
);
});
});
group
(
'organization names set'
,
()
{
...
...
@@ -425,13 +440,13 @@ void expectNotExists(FileSystemEntity entity) {
expect
(
entity
.
existsSync
(),
isFalse
);
}
void
addIosWithBundleId
(
Directory
directory
,
String
id
)
{
void
addIosWithBundleId
(
Directory
directory
,
String
id
,
{
String
qualifier
}
)
{
directory
.
childDirectory
(
'ios'
)
.
childDirectory
(
'Runner.xcodeproj'
)
.
childFile
(
'project.pbxproj'
)
..
createSync
(
recursive:
true
)
..
writeAsStringSync
(
projectFileWithBundleId
(
id
));
..
writeAsStringSync
(
projectFileWithBundleId
(
id
,
qualifier:
qualifier
));
}
void
addAndroidWithApplicationId
(
Directory
directory
,
String
id
)
{
...
...
@@ -460,13 +475,13 @@ flutter:
invalid:
'''
;
String
projectFileWithBundleId
(
String
id
)
{
String
projectFileWithBundleId
(
String
id
,
{
String
qualifier
}
)
{
return
'''
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
PRODUCT_BUNDLE_IDENTIFIER =
$
id
;
PRODUCT_BUNDLE_IDENTIFIER =
$
{qualifier ?? ''}$id${qualifier ?? ''}
;
PRODUCT_NAME = "
\$
(TARGET_NAME)";
};
name = Debug;
...
...
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