field_ios

In-the-field app for Radroots on iOS
git clone https://radroots.dev/git/field_ios.git
Log | Files | Refs | LICENSE

Info.plist (3644B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      3 <plist version="1.0">
      4 <dict>
      5 	<key>CFBundleDevelopmentRegion</key>
      6 	<string>$(DEVELOPMENT_LANGUAGE)</string>
      7 	<key>CFBundleDisplayName</key>
      8 	<string>Radroots</string>
      9 	<key>CFBundleExecutable</key>
     10 	<string>$(EXECUTABLE_NAME)</string>
     11 	<key>CFBundleIdentifier</key>
     12 	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
     13 	<key>CFBundleInfoDictionaryVersion</key>
     14 	<string>6.0</string>
     15 	<key>CFBundleName</key>
     16 	<string>$(PRODUCT_NAME)</string>
     17 	<key>CFBundlePackageType</key>
     18 	<string>APPL</string>
     19 	<key>CFBundleShortVersionString</key>
     20 	<string>1.0</string>
     21 	<key>CFBundleVersion</key>
     22 	<string>1</string>
     23 	<key>BGTaskSchedulerPermittedIdentifiers</key>
     24 	<array>
     25 		<string>$(PRODUCT_BUNDLE_IDENTIFIER).background.refresh</string>
     26 		<string>$(PRODUCT_BUNDLE_IDENTIFIER).background.processing</string>
     27 	</array>
     28 	<key>NSLocationWhenInUseUsageDescription</key>
     29 	<string>Radroots uses your location only when you tap Location Check-in.</string>
     30 	<key>NSCameraUsageDescription</key>
     31 	<string>Radroots uses the camera only when you capture photo evidence or scan a document.</string>
     32 	<key>NSFaceIDUsageDescription</key>
     33 	<string>Radroots uses Face ID only to unlock, save, or delete the local Nostr identity stored on this iPhone.</string>
     34 	<key>LSApplicationQueriesSchemes</key>
     35 	<array>
     36 		<string>nostr</string>
     37 	</array>
     38 
     39 	<key>GIT_SHA</key>
     40 	<string>$(GIT_SHA)</string>
     41 
     42 	<key>UIApplicationSceneManifest</key>
     43 	<dict>
     44 		<key>UIApplicationSupportsMultipleScenes</key>
     45 		<false/>
     46 		<key>UISceneConfigurations</key>
     47 		<dict>
     48 			<key>UIWindowSceneSessionRoleApplication</key>
     49 			<array>
     50 				<dict>
     51 					<key>UISceneConfigurationName</key>
     52 					<string>Default Configuration</string>
     53 				</dict>
     54 			</array>
     55 		</dict>
     56 	</dict>
     57 
     58 	<key>UILaunchScreen</key>
     59 	<dict>
     60 		<key>UIColorName</key>
     61 		<string>RadrootsSplashBackground</string>
     62 		<key>UIImageName</key>
     63 		<string>RadrootsSplashLogomark</string>
     64 	</dict>
     65 	<key>UIBackgroundModes</key>
     66 	<array>
     67 		<string>fetch</string>
     68 		<string>processing</string>
     69 	</array>
     70 
     71 	<key>UISupportedInterfaceOrientations</key>
     72 	<array>
     73 		<string>UIInterfaceOrientationPortrait</string>
     74 		<string>UIInterfaceOrientationLandscapeLeft</string>
     75 		<string>UIInterfaceOrientationLandscapeRight</string>
     76 	</array>
     77 	<key>UISupportedInterfaceOrientations~ipad</key>
     78 	<array>
     79 		<string>UIInterfaceOrientationPortrait</string>
     80 		<string>UIInterfaceOrientationPortraitUpsideDown</string>
     81 		<string>UIInterfaceOrientationLandscapeLeft</string>
     82 		<string>UIInterfaceOrientationLandscapeRight</string>
     83 	</array>
     84 
     85 	<key>RADROOTS_FIELD_IOS_RUNTIME_MODE</key>
     86 	<string>$(RADROOTS_FIELD_IOS_RUNTIME_MODE)</string>
     87 	<key>RADROOTS_FIELD_IOS_LOGGING_STDOUT</key>
     88 	<string>$(RADROOTS_FIELD_IOS_LOGGING_STDOUT)</string>
     89 	<key>RADROOTS_FIELD_IOS_LOGGING_FILTER</key>
     90 	<string>$(RADROOTS_FIELD_IOS_LOGGING_FILTER)</string>
     91 	<key>RADROOTS_FIELD_IOS_LOGGING_FILE_ENABLED</key>
     92 	<string>$(RADROOTS_FIELD_IOS_LOGGING_FILE_ENABLED)</string>
     93 	<key>RADROOTS_FIELD_IOS_LOGGING_FILE_NAME</key>
     94 	<string>$(RADROOTS_FIELD_IOS_LOGGING_FILE_NAME)</string>
     95 	<key>RADROOTS_FIELD_IOS_NOSTR_RELAY_URLS</key>
     96 	<string>$(RADROOTS_FIELD_IOS_NOSTR_RELAY_URLS)</string>
     97 	<key>RADROOTS_FIELD_IOS_KEYCHAIN_SERVICE_PREFIX</key>
     98 	<string>$(RADROOTS_FIELD_IOS_KEYCHAIN_SERVICE_PREFIX)</string>
     99 	<key>RADROOTS_FIELD_IOS_KEYCHAIN_ACCESS_POLICY</key>
    100 	<string>$(RADROOTS_FIELD_IOS_KEYCHAIN_ACCESS_POLICY)</string>
    101 	<key>RADROOTS_FIELD_IOS_RESET_LOCAL_STATE</key>
    102 	<string>$(RADROOTS_FIELD_IOS_RESET_LOCAL_STATE)</string>
    103 </dict>
    104 </plist>