Skip to content

Commit ed2b199

Browse files
committed
2 parents a4b5467 + 0314003 commit ed2b199

File tree

8 files changed

+509
-289
lines changed

8 files changed

+509
-289
lines changed

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org/

ios/App/App.xcodeproj/project.pbxproj

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
504EC3111FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
2828
504EC3131FED79650016851F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2929
50B271D01FEDC1A000F3C39B /* public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = public; sourceTree = SOURCE_ROOT; };
30+
844237B221B7EE71006A77BE /* App.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = App.entitlements; sourceTree = "<group>"; };
3031
AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_App.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3132
AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.release.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.release.xcconfig"; sourceTree = "<group>"; };
3233
FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.debug.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.debug.xcconfig"; sourceTree = "<group>"; };
@@ -73,6 +74,7 @@
7374
504EC3061FED79650016851F /* App */ = {
7475
isa = PBXGroup;
7576
children = (
77+
844237B221B7EE71006A77BE /* App.entitlements */,
7678
50379B222058CBB4000EE86E /* capacitor.config.json */,
7779
504EC3071FED79650016851F /* AppDelegate.swift */,
7880
504EC30B1FED79650016851F /* Main.storyboard */,
@@ -128,6 +130,11 @@
128130
504EC3031FED79650016851F = {
129131
CreatedOnToolsVersion = 9.2;
130132
ProvisioningStyle = Automatic;
133+
SystemCapabilities = {
134+
com.apple.Push = {
135+
enabled = 1;
136+
};
137+
};
131138
};
132139
};
133140
};
@@ -349,6 +356,8 @@
349356
baseConfigurationReference = FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */;
350357
buildSettings = {
351358
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
359+
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
360+
CODE_SIGN_IDENTITY = "iPhone Developer";
352361
CODE_SIGN_STYLE = Automatic;
353362
DEVELOPMENT_TEAM = 636NAD5DGY;
354363
INFOPLIST_FILE = App/Info.plist;
@@ -357,6 +366,7 @@
357366
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
358367
PRODUCT_BUNDLE_IDENTIFIER = com.nerdiccoder.blockphotos;
359368
PRODUCT_NAME = "$(TARGET_NAME)";
369+
PROVISIONING_PROFILE_SPECIFIER = "";
360370
SWIFT_VERSION = 4.0;
361371
TARGETED_DEVICE_FAMILY = "1,2";
362372
};
@@ -367,13 +377,16 @@
367377
baseConfigurationReference = AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */;
368378
buildSettings = {
369379
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
380+
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
381+
CODE_SIGN_IDENTITY = "iPhone Developer";
370382
CODE_SIGN_STYLE = Automatic;
371383
DEVELOPMENT_TEAM = 636NAD5DGY;
372384
INFOPLIST_FILE = App/Info.plist;
373385
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
374386
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
375387
PRODUCT_BUNDLE_IDENTIFIER = com.nerdiccoder.blockphotos;
376388
PRODUCT_NAME = "$(TARGET_NAME)";
389+
PROVISIONING_PROFILE_SPECIFIER = "";
377390
SWIFT_VERSION = 4.0;
378391
TARGETED_DEVICE_FAMILY = "1,2";
379392
};

ios/App/App/App.entitlements

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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>aps-environment</key>
6+
<string>development</string>
7+
</dict>
8+
</plist>

ios/App/App/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.0</string>
20+
<string>1.2</string>
2121
<key>CFBundleURLTypes</key>
2222
<array>
2323
<dict>
@@ -36,7 +36,7 @@
3636
</dict>
3737
</array>
3838
<key>CFBundleVersion</key>
39-
<string>1</string>
39+
<string>3</string>
4040
<key>LSRequiresIPhoneOS</key>
4141
<true/>
4242
<key>NSAppTransportSecurity</key>

package-lock.json

Lines changed: 482 additions & 274 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"config": {
3434
"forge": {
3535
"packagerConfig": {
36+
"name": "Block Photos",
3637
"icon": "electron/icons/mac/icon",
3738
"ignore": [
3839
".vscode",
@@ -47,17 +48,7 @@
4748
},
4849
"makers": [
4950
{
50-
"name": "@electron-forge/maker-dmg",
51-
"config": {
52-
"background": " ./assets/dmg-background.png",
53-
"format": "UFLO"
54-
}
55-
},
56-
{
57-
"name": "@electron-forge/maker-pkg",
58-
"config": {
59-
"keychain": "my-secret-ci-keychain"
60-
}
51+
"name": "@electron-forge/maker-dmg"
6152
},
6253
{
6354
"name": "@electron-forge/maker-squirrel",

src/pages/Signin.js

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/services/PresentingService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default class PresentingService {
1515
message: message,
1616
spinner: 'circles',
1717
duration: duration,
18-
enableBackdropDismiss: enableBackdropDismiss
18+
backdropDismiss: enableBackdropDismiss
1919
});
2020
return await this.loadingElement.present();
2121
}

0 commit comments

Comments
 (0)