mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Let Xcode communicate with Apple and create new provisioning profiles and register new devices (#14589)
This commit is contained in:
parent
bfc6833459
commit
6d2dc050b2
@ -287,8 +287,11 @@ Future<XcodeBuildResult> buildXcodeProject({
|
||||
'ONLY_ACTIVE_ARCH=YES',
|
||||
];
|
||||
|
||||
if (developmentTeam != null)
|
||||
if (developmentTeam != null) {
|
||||
commands.add('DEVELOPMENT_TEAM=$developmentTeam');
|
||||
commands.add('-allowProvisioningUpdates');
|
||||
commands.add('-allowProvisioningDeviceRegistration');
|
||||
}
|
||||
|
||||
final List<FileSystemEntity> contents = fs.directory(app.appDirectory).listSync();
|
||||
for (FileSystemEntity entity in contents) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user