Posts

Post not yet marked as solved
3 Replies
I have the same issue. My init is not called:import PIATunnel class PacketTunnelProvider: PIATunnelProvider { } <key>NSExtension</key> <dict> <key>NSExtensionPointIdentifier</key> <string>com.apple.networkextension.packet-tunnel</string> <key>NSExtensionPrincipalClass</key> <string>$(PRODUCT_MODULE_NAME).PacketTunnelProvider</string> </dict>open class PIATunnelProvider: NEPacketTunnelProvider { override init() { os_log("PIATunnelProvider: init") super.init() } ... }<dict> <key>com.apple.developer.networking.networkextension</key> <array> <string>app-proxy-provider</string> <string>packet-tunnel-provider</string> </array> <key>com.apple.security.app-sandbox</key> <true/> <key>com.apple.security.application-groups</key> <array> <string>group.com.xxxxx.xxxxx</string> </array> <key>com.apple.security.network.client</key> <true/> <key>com.apple.security.network.server</key> <true/> <key>keychain-access-groups</key> <array> <string>$(AppIdentifierPrefix)group.com.xxxxx.xxxxx</string> </array> </dict> </plist>is the same on both app and its extensionwhat am I doing wrong?