Add ios screenshot + update info.plist
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 1.0 MiB |
|
After Width: | Height: | Size: 2.7 MiB |
|
After Width: | Height: | Size: 903 KiB |
|
After Width: | Height: | Size: 851 KiB |
|
After Width: | Height: | Size: 563 KiB |
|
After Width: | Height: | Size: 695 KiB |
|
After Width: | Height: | Size: 522 KiB |
18
ios/Podfile
@ -43,25 +43,25 @@ post_install do |installer|
|
|||||||
'$(inherited)',
|
'$(inherited)',
|
||||||
|
|
||||||
## dart: PermissionGroup.calendar
|
## dart: PermissionGroup.calendar
|
||||||
'PERMISSION_EVENTS=0',
|
#'PERMISSION_EVENTS=0',
|
||||||
|
|
||||||
## dart: PermissionGroup.reminders
|
## dart: PermissionGroup.reminders
|
||||||
'PERMISSION_REMINDERS=0',
|
#'PERMISSION_REMINDERS=0',
|
||||||
|
|
||||||
## dart: PermissionGroup.contacts
|
## dart: PermissionGroup.contacts
|
||||||
'PERMISSION_CONTACTS=0',
|
#'PERMISSION_CONTACTS=0',
|
||||||
|
|
||||||
## dart: PermissionGroup.camera
|
## dart: PermissionGroup.camera
|
||||||
'PERMISSION_CAMERA=1',
|
'PERMISSION_CAMERA=1',
|
||||||
|
|
||||||
## dart: PermissionGroup.microphone
|
## dart: PermissionGroup.microphone
|
||||||
'PERMISSION_MICROPHONE=0',
|
#'PERMISSION_MICROPHONE=0',
|
||||||
|
|
||||||
## dart: PermissionGroup.speech
|
## dart: PermissionGroup.speech
|
||||||
'PERMISSION_SPEECH_RECOGNIZER=0',
|
#'PERMISSION_SPEECH_RECOGNIZER=0',
|
||||||
|
|
||||||
## dart: PermissionGroup.photos
|
## dart: PermissionGroup.photos
|
||||||
'PERMISSION_PHOTOS=0',
|
#'PERMISSION_PHOTOS=0',
|
||||||
|
|
||||||
## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse]
|
## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse]
|
||||||
'PERMISSION_LOCATION=1',
|
'PERMISSION_LOCATION=1',
|
||||||
@ -70,13 +70,13 @@ post_install do |installer|
|
|||||||
'PERMISSION_BLUETOOTH=1',
|
'PERMISSION_BLUETOOTH=1',
|
||||||
|
|
||||||
## dart: PermissionGroup.notification
|
## dart: PermissionGroup.notification
|
||||||
'PERMISSION_NOTIFICATIONS=0',
|
#'PERMISSION_NOTIFICATIONS=0',
|
||||||
|
|
||||||
## dart: PermissionGroup.mediaLibrary
|
## dart: PermissionGroup.mediaLibrary
|
||||||
'PERMISSION_MEDIA_LIBRARY=0',
|
#'PERMISSION_MEDIA_LIBRARY=0',
|
||||||
|
|
||||||
## dart: PermissionGroup.sensors
|
## dart: PermissionGroup.sensors
|
||||||
'PERMISSION_SENSORS=0'
|
#'PERMISSION_SENSORS=0'
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@ -67,6 +67,6 @@ SPEC CHECKSUMS:
|
|||||||
qr_code_scanner: bb67d64904c3b9658ada8c402e8b4d406d5d796e
|
qr_code_scanner: bb67d64904c3b9658ada8c402e8b4d406d5d796e
|
||||||
sqflite: 6d358c025f5b867b29ed92fc697fd34924e11904
|
sqflite: 6d358c025f5b867b29ed92fc697fd34924e11904
|
||||||
|
|
||||||
PODFILE CHECKSUM: 574c6dedc4f5dfae4b6977501b15631b71dd1aaa
|
PODFILE CHECKSUM: 44ee93014515910c6d19dd51646b230a4ced9cca
|
||||||
|
|
||||||
COCOAPODS: 1.11.3
|
COCOAPODS: 1.11.3
|
||||||
|
|||||||
@ -54,8 +54,12 @@
|
|||||||
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
|
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
|
||||||
<string>This app needs location to show content based on location</string>
|
<string>This app needs location to show content based on location</string>
|
||||||
<key>NSLocationAlwaysUsageDescription</key>
|
<key>NSLocationAlwaysUsageDescription</key>
|
||||||
|
<string>This app needs location to show content based on location</string>
|
||||||
|
<key>NSBluetoothPeripheralUsageDescription</key>
|
||||||
<string>This app needs location to show content based on location</string>
|
<string>This app needs location to show content based on location</string>
|
||||||
<key>NSBluetoothAlwaysUsageDescription</key>
|
<key>NSBluetoothAlwaysUsageDescription</key>
|
||||||
<string>This app needs location to show content based on location</string>
|
<string>This app needs location to show content based on location</string>
|
||||||
|
<key>NSMicrophoneUsageDescription</key>
|
||||||
|
<string>This app uses microphone only on qr code scanning (as it uses the camera)</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
8
ios/Runner/RunnerProfile.entitlements
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>aps-environment</key>
|
||||||
|
<string>development</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||