Skip to content

Commit 7925ae5

Browse files
Fix updating issue
1 parent f6cfe32 commit 7925ae5

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

Apple Juice.xcodeproj/project.pbxproj

+3-5
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@
141141
8EF30EF01D32D1C70010BC49 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
142142
C50D516422996CE500E985D1 /* Apple Juice Widget.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Apple Juice Widget.entitlements"; sourceTree = "<group>"; };
143143
C50D516E22997A1800E985D1 /* LaunchAtLogin.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = LaunchAtLogin.framework; path = Carthage/Build/Mac/LaunchAtLogin.framework; sourceTree = "<group>"; };
144+
C526408E22A29A5E00D46AE0 /* Apple Juice.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Apple Juice.entitlements"; sourceTree = "<group>"; };
144145
C58CD0B6222179A300D286C0 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = "<group>"; };
145146
C58CD0B7222179D200D286C0 /* de */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = de; path = de.lproj/MainMenu.xib; sourceTree = "<group>"; };
146147
C58CD0B822217BAB00D286C0 /* fr */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = fr; path = fr.lproj/MainMenu.xib; sourceTree = "<group>"; };
147148
C58CD0B92221D9A800D286C0 /* it */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = it; path = it.lproj/MainMenu.xib; sourceTree = "<group>"; };
148149
C58CD0BA2221DBB500D286C0 /* es */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = es; path = es.lproj/MainMenu.xib; sourceTree = "<group>"; };
149150
C58CD0BB2221E6B900D286C0 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "pt-BR"; path = "pt-BR.lproj/MainMenu.xib"; sourceTree = "<group>"; };
150-
C58CD0BC2221EACF00D286C0 /* Apple Juice.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Apple Juice.entitlements"; sourceTree = "<group>"; };
151151
C5D7EB47209891D500012A81 /* BatteryHealthType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatteryHealthType.swift; sourceTree = "<group>"; };
152152
C5EEDA6820276240004DE64C /* PreferenceKey.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreferenceKey.swift; sourceTree = "<group>"; };
153153
/* End PBXFileReference section */
@@ -268,7 +268,7 @@
268268
isa = PBXGroup;
269269
children = (
270270
8EBF29EC1C485493005BBAE0 /* Localizable.strings */,
271-
C58CD0BC2221EACF00D286C0 /* Apple Juice.entitlements */,
271+
C526408E22A29A5E00D46AE0 /* Apple Juice.entitlements */,
272272
8EBEB4471C466091001DBE91 /* Assets.xcassets */,
273273
);
274274
name = Resources;
@@ -363,7 +363,7 @@
363363
enabled = 0;
364364
};
365365
com.apple.Sandbox = {
366-
enabled = 1;
366+
enabled = 0;
367367
};
368368
};
369369
};
@@ -690,7 +690,6 @@
690690
buildSettings = {
691691
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
692692
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
693-
CODE_SIGN_ENTITLEMENTS = "Apple Juice/Apple Juice.entitlements";
694693
COMBINE_HIDPI_IMAGES = YES;
695694
FRAMEWORK_SEARCH_PATHS = (
696695
"$(inherited)",
@@ -714,7 +713,6 @@
714713
buildSettings = {
715714
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
716715
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
717-
CODE_SIGN_ENTITLEMENTS = "Apple Juice/Apple Juice.entitlements";
718716
COMBINE_HIDPI_IMAGES = YES;
719717
FRAMEWORK_SEARCH_PATHS = (
720718
"$(inherited)",

Apple Juice/Apple Juice.entitlements

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
4-
<dict>
5-
<key>com.apple.security.app-sandbox</key>
6-
<true/>
7-
<key>com.apple.security.network.client</key>
8-
<true/>
9-
<key>com.apple.security.network.server</key>
10-
<true/>
11-
</dict>
4+
<dict/>
125
</plist>

Apple Juice/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>352</string>
24+
<string>353</string>
2525
<key>LSApplicationCategoryType</key>
2626
<string>public.app-category.utilities</string>
2727
<key>LSMinimumSystemVersion</key>

0 commit comments

Comments
 (0)