Ternary
Ternary

Reputation: 2421

iOS Secure Configuration Parameters

Is a plist compiled into the actual binary of an iOS application? Specifically, I'm curious if it is a safe place to store configuration parameters that are sensitive (API keys, etc.).

Upvotes: 0

Views: 60

Answers (2)

mike-dutka
mike-dutka

Reputation: 254

This is not very safe place. Plist file is not compiled into the app binary. iOS application (myapplication.app) seems to be like a folder which contains the executable binary and all the resources (info.plist too) as a separated files.

Upvotes: 1

Related Questions