I have 3 reports and 1 question.
Could you please give me your opinion?
1. CFBundlePackageType is
I get a build error in NativeScript.
This is how I did it in my environment.
2. These errors occur when uploading an application to the AppStore.
3. These errors occur when uploading an application to the AppStore.
4. What is
I can't find any documentation for it, and it doesn't seem to be on webrtc.org either.
Does it affect the audio (AVAudioSession, etc.)?
Could you please give me your opinion?
1. CFBundlePackageType is
FMWK
, not iOS
, isn't it?This is how I did it in my environment.
Code:
plutil -replace CFBundleVersion -string "FMWK" ./FPWCSApi2.framework/Info.plist
2. These errors occur when uploading an application to the AppStore.
This is how I did it in my environment.> ERROR ITMS-90058: "This bundle is invalid. The value for key CFBundleVersion [FULL_VERSION] in the Info.plist file must be a period-separated list of at most three non-negative integers.
> ERROR ITMS-90060: "This bundle is invalid. The value for key CFBundleShortVersionString 'SHORT_VERSION' in the Info.plist file at '${bundlePath}' must be a period-separated list of at most three non-negative integers.
Code:
plutil -replace CFBundleVersion -string "2.6.10" ./FPWCSApi2.framework/Info.plist
plutil -replace CFBundleShortVersionString -string "2.6" ./FPWCSApi2.framework/Info.plist
3. These errors occur when uploading an application to the AppStore.
This is how I did it in my environment.> ERROR ITMS-90205: "Invalid Bundle. The bundle at 'my.app/Frameworks/FPWCSApi2.framework' contains disallowed nested bundles."
> ERROR ITMS-90206: "Invalid Bundle. The bundle at 'my.app/Frameworks/FPWCSApi2.framework' contains disallowed file 'Frameworks'.
Code:
mv ./FPWCSApi2.framework/Frameworks/WebRTC.framework ./
rmdir ./FPWCSApi2.framework/Frameworks
: and also
mkdir ./WebRTC.framework/Modules
cat - 1>|./WebRTC.framework/Modules/module.modulemap <<'END_OF_MODULEMAP'
framework module WebRTC {
umbrella header "WebRTC.h"
export *
module * { export * }
}
4. What is
BOOL onlyPlayback
of RTCAudioSessionConfiguration in the bundled WebRTC.framework?I can't find any documentation for it, and it doesn't seem to be on webrtc.org either.
Does it affect the audio (AVAudioSession, etc.)?
Last edited: