WWDC 2023 states that app developers should be provided with a Privacy Manifest.
And Apple released a list of influential libraries.
Should I add it in the case below as well??
If Apple is not the mentioned library
If 'Describing use of required reason API' is not used
Summary: Are all libraries subject to Privacy Manifest?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hello.
From March 13, 2024, he said he would send an e-mail related to 'Privacy Manifest'.
Does Apple send us an email to the review process? Or does it send the app after it is finally released??
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
App Store Connect
Privacy
App Review
Our company has a library that can be used internally.
This is being used as a .a file.
The languages are in C and C++.
C code contains stat. Is this the same stat as Apple refers to??
How do you solve this??
Hello
xcode clang: error: "cannot specify -o when generating multiple output files"
I don't think I should after updating Xcode 15.3, where should I check??
I used it well before.
Can i use c++ library with c library in swift app project
Hello. I want to use a C++ library in my Swift app project.
First, our company has an internal solution library.
When built, it generates a Static Library in '.a' format, and we use it by connecting the library's Header to the App_Bridging_Header.
There's no problem with this part.
However, the new feature now includes C++. It also generates a Static Library in '.a' format.
So, I tried to use the same method and created an App_Bridging_Header. But an error occurs, and I can't proceed.
The first error occurs in the library file:
'iostream' file not found
The second error occurs in the App_Bridging_Header:
failed to emit precompiled header '/Users/kimjitae/Library/Developer/Xcode/DerivedData/ddddd-glmnoqrwdrgarrhjulxjmalpyikr/Build/Intermediates.noindex/PrecompiledHeaders/ddddd-Bridging-Header-swift_3O89L0OXZ0CPD-clang_188AW1HK8F0Q3.pch' for bridging header '/Users/kimjitae/Desktop/enf4/ddddd/ddddd/ddddd-Bridging-Header.h'
Our library is developed in C++ using Xcode, and there's no problem when we run and build just the library project.
The build succeeds, and the '.a' file is generated correctly. However, when we try to connect it with the app, the above problems occur.
Could there be a problem because we also need to use the existing C library alongside this?
The build is successful in an app project created with Objective-C.