Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Commit

Permalink
🐛 fix private com creation error
Browse files Browse the repository at this point in the history
  • Loading branch information
lifenautjoe committed Aug 15, 2019
1 parent 01a3186 commit 9c0c00c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ios/OneSignalNotificationServiceExtension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>0.0.50</string>
<string>0.0.51</string>
<key>CFBundleVersion</key>
<string>50</string>
<string>51</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
Expand Down
4 changes: 2 additions & 2 deletions ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.0.50</string>
<string>0.0.51</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>50</string>
<string>51</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/fields/toggle_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class OBToggleField extends StatelessWidget {
final Widget subtitle;
final bool hasDivider;

const OBToggleField({Key key, @required this.value, this.onChanged, this.onTap, this.leading, @required this.title, this.subtitle, this.hasDivider}) : super(key: key);
const OBToggleField({Key key, @required this.value, this.onChanged, this.onTap, this.leading, @required this.title, this.subtitle, this.hasDivider=true}) : super(key: key);


@override
Expand Down

0 comments on commit 9c0c00c

Please sign in to comment.