XXX不支持Azure构建管道中的配置文件

时间:2020-07-06 05:16:36

标签: ios ionic-framework azure-devops azure-pipelines azure-pipelines-build-task

我正在Azure构建管道中构建Ionic 4应用程序。当我尝试运行具有其他cordova依赖项的管道时,在Xcode存档步骤期间出现以下错误。

❌  error: AppAuth does not support provisioning profiles. AppAuth does not support provisioning profiles, but provisioning profile Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'AppAuth' from project 'Pods')

❌  error: GoogleUtilities does not support provisioning profiles. GoogleUtilities does not support provisioning profiles, but provisioning profile Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'GoogleUtilities' from project 'Pods')

❌  error: GoogleToolboxForMac does not support provisioning profiles. GoogleToolboxForMac does not support provisioning profiles, but provisioning profile Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'GoogleToolboxForMac' from project 'Pods')

❌  error: GTMSessionFetcher does not support provisioning profiles. GTMSessionFetcher does not support provisioning profiles, but provisioning profile Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'GTMSessionFetcher' from project 'Pods')

❌  error: GTMAppAuth does not support provisioning profiles. GTMAppAuth does not support provisioning profiles, but provisioning profile Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'GTMAppAuth' from project 'Pods')

❌  error: nanopb does not support provisioning profiles. nanopb does not support provisioning profiles, but provisioning profile  Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'nanopb' from project 'Pods')

❌  error: Protobuf does not support provisioning profiles. Protobuf does not support provisioning profiles, but provisioning profile  Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'Protobuf' from project 'Pods')

❌  error: Pods-xx does not support provisioning profiles. Pods-xx does not support provisioning profiles, but provisioning profile  Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'Pods-xx' from project 'Pods')

❌  error: FBSDKShareKit does not support provisioning profiles. FBSDKShareKit does not support provisioning profiles, but provisioning profile Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'FBSDKShareKit' from project 'Pods')

❌  error: FBSDKLoginKit does not support provisioning profiles. FBSDKLoginKit does not support provisioning profiles, but provisioning profile Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'FBSDKLoginKit' from project 'Pods') 

使用ionic 3代码库运行构建管道时也存在相同的问题,但是在管道开始时有一种在下面运行脚本的解决方案

echo "Uninstalling all CocoaPods versions..."
sudo gem uninstall cocoapods -ax
echo "Installing CocoaPods version 1.5.3..."
sudo gem install cocoapods -v 1.5.3

Source

但是此解决方案不适用于ionic 4代码库。

cordova插件:

"plugins": {
      "cordova-plugin-whitelist": {},
      "cordova-plugin-splashscreen": {},
      "cordova-plugin-globalization": {},
      "cordova-plugin-screen-orientation": {},
      "cordova-plugin-statusbar": {},
      "cordova-plugin-file": {},
      "cordova-plugin-app-version": {},
      "cordova-plugin-file-transfer": {},
      "cordova-plugin-filechooser": {},
      "cordova-plugin-android-permissions": {},
      "cordova-plugin-filepicker": {},
      "cordova-plugin-request-location-accuracy": {
        "PLAY_SERVICES_LOCATION_VERSION": "16.+"
      },
      "cordova-plugin-geolocation": {},
      "phonegap-plugin-push": {
        "ANDROID_SUPPORT_V13_VERSION": "27.+",
        "FCM_VERSION": "17.0.+"
      },
      "cordova-plugin-filepath": {},
      "cordova-sqlite-storage": {},
      "cordova-plugin-advanced-http": {
        "OKHTTP_VERSION": "3.10.0"
      },
      "cordova-plugin-googleplus": {
        "REVERSED_CLIENT_ID": "com.googleusercontent.apps.123456789101112-abcd1234abcd1234zbcd1234abcd1234"
      },
      "cordova-plugin-ionic-webview": {
        "ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
      },
      "cordova-plugin-facebook4": {
        "APP_ID": "123456789012345",
        "APP_NAME": "my_app",
        "FACEBOOK_HYBRID_APP_EVENTS": "false",
        "FACEBOOK_ANDROID_SDK_VERSION": "5.13.0"
      },
      "cordova-plugin-google-analytics": {
        "GMS_VERSION": "16.0.1"
      },
      "cordova-plugin-localization-strings": {},
      "cordova.plugins.diagnostic": {
        "ANDROID_SUPPORT_VERSION": "28.+"
      },
      "cordova-plugin-inappbrowser": {},
      "cordova-plugin-telerik-imagepicker": {
        "ANDROID_SUPPORT_V7_VERSION": "27.+",
        "PHOTO_LIBRARY_USAGE_DESCRIPTION": " "
      },
      "cordova-plugin-camera": {
        "ANDROID_SUPPORT_V4_VERSION": "27.+"
      },
      "cordova-plugin-ionic-keyboard": {}
    }

1 个答案:

答案 0 :(得分:1)

您可以尝试解决类似问题的case中提到的解决方法。

将以下代码添加到您的podfile

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
            config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
            config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
        end
    end
end