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

Archiving doesn't work (iOS 10) #1035

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added actor-sdk/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?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>SuppressBuildableAutocreation</key>
<dict>
<key>EA6B7348F8364542DDD264F741AAAA19</key>
<dict>
<key>primary</key>
<true/>
</dict>
</dict>
</dict>
</plist>
4 changes: 3 additions & 1 deletion actor-sdk/sdk-core-ios/ActorSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1932,7 +1932,7 @@
TargetAttributes = {
066A50D11BC4AE63000E606E = {
CreatedOnToolsVersion = 7.0;
DevelopmentTeam = HVJR44Y5B6;
DevelopmentTeam = 2CYX44K4NB;
LastSwiftMigration = 0800;
};
};
Expand Down Expand Up @@ -2418,6 +2418,7 @@
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 2CYX44K4NB;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
Expand Down Expand Up @@ -2474,6 +2475,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 2CYX44K4NB;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?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>SuppressBuildableAutocreation</key>
<dict>
<key>066A50D11BC4AE63000E606E</key>
<dict>
<key>primary</key>
<true/>
</dict>
</dict>
</dict>
</plist>
14 changes: 7 additions & 7 deletions actor-sdk/sdk-core-ios/ActorSDK/Sources/ActorCore/convert.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import sys
import os
import codecs

if not os.path.exists('Public'):
os.makedirs('Public')
Expand Down Expand Up @@ -42,12 +43,11 @@
if not os.path.exists(os.path.dirname(externalFile)):
os.makedirs(os.path.dirname(externalFile))

with open(srcFile, 'r') as f:

with codecs.open(srcFile, 'r', encoding='utf-8') as f:
allLines = f.read()
destLines = ""

with open(externalFile, 'w') as d:
with codecs.open(externalFile, 'w', encoding='utf-8') as d:
d.write(allLines)

for line in allLines.splitlines():
Expand All @@ -67,13 +67,13 @@
isUpdated = True

if os.path.exists(destFile):
with open(destFile, 'rw') as d:
with codecs.open(destFile, 'rw', encoding='utf-8') as d:
if d.read() == destLines:
# print "Not Updated"
isUpdated = False

if isUpdated:
with open(destFile, 'w') as d:
with codecs.open(destFile, 'w', encoding='utf-8') as d:
d.write(destLines)

isUmbrellaChanged = True
Expand All @@ -83,11 +83,11 @@
umbrellaContent += "#import \"" + line + "\"\n"

if os.path.exists('Public/ActorCoreUmbrella.h'):
with open('Public/ActorCoreUmbrella.h', 'r') as d:
with codecs.open('Public/ActorCoreUmbrella.h', 'r', encoding='utf-8') as d:
if d.read() == umbrellaContent:
isUmbrellaChanged = False

if isUmbrellaChanged:
with open('Public/ActorCoreUmbrella.h', 'w') as d:
with codecs.open('Public/ActorCoreUmbrella.h', 'w', encoding='utf-8') as d:
d.write(umbrellaContent)

Binary file added actor-sdk/sdk-core/.DS_Store
Binary file not shown.
Binary file added actor-sdk/sdk-core/core/.DS_Store
Binary file not shown.
Binary file added actor-sdk/sdk-core/core/core-cocoa/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added actor-sdk/sdk-core/core/core-shared/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.