Compare commits

..

6 Commits
1.1.1 ... 1.1.3

Author SHA1 Message Date
Riley Testut
c325b994d9 Updates app version to 1.1.3 2020-01-29 13:15:33 -08:00
Riley Testut
719cea97e8 Replaces frameworks with static libraries
As of iOS 13.3.1, apps installed with free developer accounts that contain embedded frameworks fail to launch. To work around this, we now link all dependencies via Cocoapods as static libraries.
2020-01-29 12:06:26 -08:00
Riley Testut
748ad8588d Updates app version to 1.1.2 2019-12-16 13:56:23 -08:00
Riley Testut
0a2a54240d Updates apps.json for AltStore 1.1.2 2019-12-16 13:52:24 -08:00
Riley Testut
9211aef6d1 Adds Clip to apps.json 2019-12-16 13:52:14 -08:00
Riley Testut
11a4e1a2a7 Fixes crash when signing in
ALTAnisetteData.timeZone was nil for some users after receiving it from AltServer, so there is now a default time zone value to ensure it’s never nil.
2019-12-16 12:27:09 -08:00
449 changed files with 3738 additions and 901 deletions

View File

@@ -7,6 +7,7 @@
objects = {
/* Begin PBXBuildFile section */
01100C7036F0EBAC5B30984B /* libPods-AltStore.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0DE618FA97EA42C3F468D186 /* libPods-AltStore.a */; };
A8BCEBEAC0620CF80A2FD26D /* Pods_AltServer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FC3822AB1C4CF1D4CDF7445D /* Pods_AltServer.framework */; };
BF0201BA22C2EFA3000B93E4 /* AltSign.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF5AB3A72285FE6C00DC914B /* AltSign.framework */; };
BF0201BB22C2EFA3000B93E4 /* AltSign.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = BF5AB3A72285FE6C00DC914B /* AltSign.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
@@ -112,13 +113,9 @@
BF45884A2298D55000BD7491 /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = BF4588482298D55000BD7491 /* thread.c */; };
BF45884B2298D55000BD7491 /* thread.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4588492298D55000BD7491 /* thread.h */; };
BF4588882298DD3F00BD7491 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = BF4588872298DD3F00BD7491 /* libxml2.tbd */; };
BF4713A522976D1E00784A2F /* openssl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF4713A422976CFC00784A2F /* openssl.framework */; };
BF4713A622976D1E00784A2F /* openssl.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = BF4713A422976CFC00784A2F /* openssl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
BF4C7F2523801F0800B2556E /* AltSign.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF9B63C5229DD44D002F0A62 /* AltSign.framework */; };
BF4C7F27238086EB00B2556E /* InstallPlugin.sh in Resources */ = {isa = PBXBuildFile; fileRef = BF4C7F26238086EB00B2556E /* InstallPlugin.sh */; };
BF54E8212315EF0D000AE0D8 /* ALTPatreonBenefitType.m in Sources */ = {isa = PBXBuildFile; fileRef = BF54E8202315EF0D000AE0D8 /* ALTPatreonBenefitType.m */; };
BF5AB3A82285FE7500DC914B /* AltSign.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF5AB3A72285FE6C00DC914B /* AltSign.framework */; };
BF5AB3A92285FE7500DC914B /* AltSign.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = BF5AB3A72285FE6C00DC914B /* AltSign.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
BF5C5FCF237DF69100EDD0C6 /* ALTPluginService.m in Sources */ = {isa = PBXBuildFile; fileRef = BF5C5FCE237DF69100EDD0C6 /* ALTPluginService.m */; };
BF6F439223644C6E00A0B879 /* RefreshAltStoreViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF6F439123644C6E00A0B879 /* RefreshAltStoreViewController.swift */; };
BF74989B23621C0700CED65F /* ForwardingNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF74989A23621C0700CED65F /* ForwardingNavigationController.swift */; };
@@ -154,8 +151,6 @@
BFD247752284B9A500981D42 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BFD247732284B9A500981D42 /* Main.storyboard */; };
BFD247772284B9A700981D42 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BFD247762284B9A700981D42 /* Assets.xcassets */; };
BFD2477A2284B9A700981D42 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BFD247782284B9A700981D42 /* LaunchScreen.storyboard */; };
BFD247872284BB4200981D42 /* Roxas.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BFD247862284BB3B00981D42 /* Roxas.framework */; };
BFD247882284BB4200981D42 /* Roxas.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = BFD247862284BB3B00981D42 /* Roxas.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
BFD2478C2284C4C300981D42 /* AppIconImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD2478B2284C4C300981D42 /* AppIconImageView.swift */; };
BFD2478F2284C8F900981D42 /* Button.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD2478E2284C8F900981D42 /* Button.swift */; };
BFD2479F2284FBD000981D42 /* UIColor+AltStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD2479E2284FBD000981D42 /* UIColor+AltStore.swift */; };
@@ -226,7 +221,6 @@
BFF0B696232242D3007A79E1 /* LicensesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFF0B695232242D3007A79E1 /* LicensesViewController.swift */; };
BFF0B6982322CAB8007A79E1 /* InstructionsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFF0B6972322CAB8007A79E1 /* InstructionsViewController.swift */; };
BFF0B69A2322D7D0007A79E1 /* UIScreen+CompactHeight.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFF0B6992322D7D0007A79E1 /* UIScreen+CompactHeight.swift */; };
DBAC68F8EC03F4A41D62EDE1 /* Pods_AltStore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1039C07E517311FC499A0B64 /* Pods_AltStore.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -292,23 +286,10 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
BFD247842284BB2C00981D42 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
BF4713A622976D1E00784A2F /* openssl.framework in Embed Frameworks */,
BFD247882284BB4200981D42 /* Roxas.framework in Embed Frameworks */,
BF5AB3A92285FE7500DC914B /* AltSign.framework in Embed Frameworks */,
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
1039C07E517311FC499A0B64 /* Pods_AltStore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AltStore.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0DE618FA97EA42C3F468D186 /* libPods-AltStore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-AltStore.a"; sourceTree = BUILT_PRODUCTS_DIR; };
11611D46F8A7C8B928E8156B /* Pods-AltServer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AltServer.debug.xcconfig"; path = "Target Support Files/Pods-AltServer/Pods-AltServer.debug.xcconfig"; sourceTree = "<group>"; };
589BA531D903B28F292063E5 /* Pods-AltServer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AltServer.release.xcconfig"; path = "Target Support Files/Pods-AltServer/Pods-AltServer.release.xcconfig"; sourceTree = "<group>"; };
A136EE677716B80768E9F0A2 /* Pods-AltStore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AltStore.release.xcconfig"; path = "Target Support Files/Pods-AltStore/Pods-AltStore.release.xcconfig"; sourceTree = "<group>"; };
@@ -589,10 +570,7 @@
buildActionMask = 2147483647;
files = (
BF1E316022A0636400370A3C /* libAltKit.a in Frameworks */,
BF4713A522976D1E00784A2F /* openssl.framework in Frameworks */,
BFD247872284BB4200981D42 /* Roxas.framework in Frameworks */,
BF5AB3A82285FE7500DC914B /* AltSign.framework in Frameworks */,
DBAC68F8EC03F4A41D62EDE1 /* Pods_AltStore.framework in Frameworks */,
01100C7036F0EBAC5B30984B /* libPods-AltStore.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -985,8 +963,8 @@
BFD247862284BB3B00981D42 /* Roxas.framework */,
BF5AB3A72285FE6C00DC914B /* AltSign.framework */,
BF4713A422976CFC00784A2F /* openssl.framework */,
1039C07E517311FC499A0B64 /* Pods_AltStore.framework */,
FC3822AB1C4CF1D4CDF7445D /* Pods_AltServer.framework */,
0DE618FA97EA42C3F468D186 /* libPods-AltStore.a */,
);
name = Frameworks;
sourceTree = "<group>";
@@ -1281,8 +1259,7 @@
BFD247662284B9A500981D42 /* Sources */,
BFD247672284B9A500981D42 /* Frameworks */,
BFD247682284B9A500981D42 /* Resources */,
BFD247842284BB2C00981D42 /* Embed Frameworks */,
B8F37E08B55D2C9C4E2B1B4E /* [CP] Embed Pods Frameworks */,
8C9013C41DD92A1476195C0E /* [CP] Copy Pods Resources */,
);
buildRules = (
);
@@ -1404,56 +1381,40 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
8C9013C41DD92A1476195C0E /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-AltStore/Pods-AltStore-resources-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Copy Pods Resources";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-AltStore/Pods-AltStore-resources-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AltStore/Pods-AltStore-resources.sh\"\n";
showEnvVarsInLog = 0;
};
98BF22D155DBAEA97544E3E6 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-AltServer/Pods-AltServer-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/STPrivilegedTask/STPrivilegedTask.framework",
"${PODS_ROOT}/Sparkle/Sparkle.framework",
"${PODS_ROOT}/Sparkle/Sparkle.framework.dSYM",
"${PODS_ROOT}/Target Support Files/Pods-AltServer/Pods-AltServer-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
);
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/STPrivilegedTask.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Sparkle.framework",
"${DWARF_DSYM_FOLDER_PATH}/Sparkle.framework.dSYM",
"${PODS_ROOT}/Target Support Files/Pods-AltServer/Pods-AltServer-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AltServer/Pods-AltServer-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
B8F37E08B55D2C9C4E2B1B4E /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-AltStore/Pods-AltStore-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/KeychainAccess/KeychainAccess.framework",
"${BUILT_PRODUCTS_DIR}/Nuke/Nuke.framework",
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
);
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/KeychainAccess.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Nuke.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AltStore/Pods-AltStore-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
BF7FDA2C23203B6B00B5D3A4 /* Copy Launcher App */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
@@ -2175,7 +2136,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.1;
MARKETING_VERSION = 1.1.3;
PRODUCT_BUNDLE_IDENTIFIER = com.rileytestut.AltStore;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2202,7 +2163,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.1;
MARKETING_VERSION = 1.1.3;
PRODUCT_BUNDLE_IDENTIFIER = com.rileytestut.AltStore;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";

View File

@@ -7,14 +7,14 @@
"name": "AltStore",
"bundleIdentifier": "com.rileytestut.AltStore",
"developerName": "Riley Testut",
"version": "1.1.1",
"versionDate": "2019-12-11T15:00:00-08:00",
"versionDescription": "- Fixes “Your Apple ID or password is incorrect” error\n- Fixes app size increasing when refreshing apps",
"version": "1.1.2",
"versionDate": "2019-12-16T12:30:00-08:00",
"versionDescription": "NEW:\n• Fixes crash for some users when signing-in.\n\nPREVIOUS:\n• Fixes “Your Apple ID or password is incorrect” error\n Fixes app size increasing when refreshing apps",
"downloadURL": "https://f000.backblazeb2.com/file/altstore/altstore.ipa",
"localizedDescription": "AltStore is an alternative app store for non-jailbroken devices. \n\nThis initial release of AltStore allows you to install Delta, an all-in-one emulator for iOS, with support for installing 3rd party apps coming soon.",
"iconURL": "https://user-images.githubusercontent.com/705880/65270980-1eb96f80-dad1-11e9-9367-78ccd25ceb02.png",
"tintColor": "018084",
"size": 3775384,
"size": 3775587,
"screenshotURLs": [
"https://user-images.githubusercontent.com/705880/65605563-2f009d00-df5e-11e9-9b40-1f36135d5c80.PNG",
"https://user-images.githubusercontent.com/705880/65605569-30ca6080-df5e-11e9-8dfb-15ebb00e10cb.PNG",
@@ -36,14 +36,14 @@
"bundleIdentifier": "com.rileytestut.AltStore.Beta",
"developerName": "Riley Testut",
"subtitle": "An alternative App Store for iOS.",
"version": "1.1.1b",
"versionDate": "2019-12-11T15:00:00-08:00",
"versionDescription": "- Fixes “Your Apple ID or password is incorrect” error\n- Fixes app size increasing when refreshing apps\n- Fixes sideloading apps with diacritic marks",
"version": "1.1.2b",
"versionDate": "2019-12-16T12:30:00-08:00",
"versionDescription": "NEW:\n• Fixes crash for some users when signing-in.\n\nPREVIOUS:\n• Fixes “Your Apple ID or password is incorrect” error\n Fixes app size increasing when refreshing apps\n Fixes sideloading apps with diacritic marks\n",
"downloadURL": "https://f000.backblazeb2.com/file/altstore/altstore-beta.ipa",
"localizedDescription": "AltStore is an alternative app store for non-jailbroken devices. \n\nThis beta release of AltStore allows you to install Delta as well as any app (.ipa) directly from the Files app.",
"iconURL": "https://user-images.githubusercontent.com/705880/65270980-1eb96f80-dad1-11e9-9367-78ccd25ceb02.png",
"tintColor": "018084",
"size": 3776339,
"size": 3776456,
"beta": true,
"screenshotURLs": [
"https://user-images.githubusercontent.com/705880/65605563-2f009d00-df5e-11e9-9b40-1f36135d5c80.PNG",
@@ -139,6 +139,31 @@
"https://user-images.githubusercontent.com/705880/65599570-04f5ad80-df53-11e9-914a-8c42ac4805b0.PNG"
]
},
{
"name": "Clip",
"bundleIdentifier": "com.rileytestut.Clip.Beta",
"subtitle": "Manage your clipboard history with ease.",
"developerName": "Riley Testut",
"version": "0.4b",
"versionDate": "2019-12-13T12:00:00-08:00",
"versionDescription": "Initial version.",
"downloadURL": "https://f000.backblazeb2.com/file/altstore/clip-beta.ipa",
"localizedDescription": "Clip is a simple clipboard manager for iOS. \n\nUnlike other clipboard managers, Clip can continue monitoring your clipboard while in the background. No longer do you need to remember to manually open or share to an app to save your clipboard; just copy and paste as you would normally do, and Clip will have your back.\n\nIn addition to background monitoring, Clip also has these features:\n\n• Save text, URLs, and images copied to the clipboard.\n• Copy, delete, or share any clippings saved to Clip.\n• Customizable history limit.\n\nDownload Clip today, and never worry about losing your clipboard again!",
"iconURL": "https://user-images.githubusercontent.com/705880/63391981-5326f800-c37a-11e9-99d8-760fd06bb601.png",
"tintColor": "EC008C",
"size": 462565,
"beta": true,
"permissions": [
{
"type": "background-audio",
"usageDescription": "Allows Clip to continuously monitor your clipboard in the background."
}
],
"screenshotURLs": [
"https://user-images.githubusercontent.com/705880/63391950-34286600-c37a-11e9-965f-832efe3da507.png",
"https://user-images.githubusercontent.com/705880/70830209-8e738980-1da4-11ea-8b3b-6e5fbc78adff.png"
]
},
{
"name": "Delta Lite",
"bundleIdentifier": "com.rileytestut.Delta.Lite.Beta",
@@ -193,6 +218,16 @@
"url": "https://altstore.io/faq/",
"date": "2019-09-28",
"notify": false
},
{
"title": "Coming Soon: Clip",
"identifier": "clip-coming-soon",
"caption": "A clipboard manager that can run in the background. Beta available now for all Patrons.",
"tintColor": "EC008C",
"url": "https://twitter.com/altstoreio/status/1205597959699582977",
"imageURL": "https://user-images.githubusercontent.com/705880/65606598-04afdf00-df60-11e9-8f93-af6345d39557.png",
"date": "2019-12-16",
"notify": false
}
],
"userInfo": {

12
Podfile
View File

@@ -3,11 +3,13 @@ inhibit_all_warnings!
target 'AltStore' do
platform :ios, '12.0'
use_frameworks!
use_modular_headers!
# Pods for AltStore
pod 'KeychainAccess', '~> 3.2.0'
pod 'Nuke', '~> 7.0'
pod 'AltSign', :path => 'Dependencies/AltSign'
pod 'Roxas', :path => 'Dependencies/Roxas'
end
@@ -20,4 +22,12 @@ target 'AltServer' do
pod 'STPrivilegedTask'
pod 'Sparkle'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.2'
end
end
end

View File

@@ -1,28 +1,50 @@
PODS:
- AltSign (0.1):
- AltSign/CoreCrypto (= 0.1)
- AltSign/ldid (= 0.1)
- AltSign/minizip (= 0.1)
- AltSign/OpenSSL (= 0.1)
- AltSign/plist (= 0.1)
- AltSign/CoreCrypto (0.1)
- AltSign/ldid (0.1)
- AltSign/minizip (0.1)
- AltSign/OpenSSL (0.1)
- AltSign/plist (0.1)
- KeychainAccess (3.2.0)
- Nuke (7.6.3)
- Roxas (0.1)
- Sparkle (1.21.3)
- STPrivilegedTask (1.0.1)
DEPENDENCIES:
- AltSign (from `Dependencies/AltSign`)
- KeychainAccess (~> 3.2.0)
- Nuke (~> 7.0)
- Roxas (from `Dependencies/Roxas`)
- Sparkle
- STPrivilegedTask
SPEC REPOS:
https://github.com/cocoapods/specs.git:
trunk:
- KeychainAccess
- Nuke
- Sparkle
- STPrivilegedTask
EXTERNAL SOURCES:
AltSign:
:path: Dependencies/AltSign
Roxas:
:path: Dependencies/Roxas
SPEC CHECKSUMS:
AltSign: c3693fa5a4b6d0ec6bedb74a5d768fe58bd67b87
KeychainAccess: 3b1bf8a77eb4c6ea1ce9404c292e48f948954c6b
Nuke: 44130e95e09463f8773ae4b96b90de1eba6b3350
Roxas: 1990039f843f5dc284918dc82375feb80020ef62
Sparkle: 3f75576db8b0265adef36c43249d747f22d0b708
STPrivilegedTask: 103f97827454e786074640cf89d303be344498c7
PODFILE CHECKSUM: 2dd891b7eed372ff86885b37e1af61424394ed3d
PODFILE CHECKSUM: 467b50b42949f001543841f547fa6b427e29dc53
COCOAPODS: 1.6.1
COCOAPODS: 1.8.4

1
Pods/Headers/Private/AltSign/ALTAccount.h generated Symbolic link
View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTAccount.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTAnisetteData.h

1
Pods/Headers/Private/AltSign/ALTAppGroup.h generated Symbolic link
View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTAppGroup.h

1
Pods/Headers/Private/AltSign/ALTAppID.h generated Symbolic link
View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTAppID.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Apple API/ALTAppleAPI+Authentication.h

1
Pods/Headers/Private/AltSign/ALTAppleAPI.h generated Symbolic link
View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Apple API/ALTAppleAPI.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Apple API/ALTAppleAPISession.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Apple API/ALTAppleAPI_Private.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/ALTApplication.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Capabilities/ALTCapabilities.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTCertificate.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTCertificateRequest.h

1
Pods/Headers/Private/AltSign/ALTDevice.h generated Symbolic link
View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTDevice.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTModel+Internal.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTProvisioningProfile.h

1
Pods/Headers/Private/AltSign/ALTSigner.h generated Symbolic link
View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Signing/ALTSigner.h

1
Pods/Headers/Private/AltSign/ALTTeam.h generated Symbolic link
View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Model/Apple API/ALTTeam.h

1
Pods/Headers/Private/AltSign/AltSign.h generated Symbolic link
View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/AltSign.h

View File

@@ -0,0 +1 @@
../../../../../../Dependencies/AltSign/AltSign/ldid/alt_ldid.hpp

View File

@@ -0,0 +1 @@
../../../../../../Dependencies/AltSign/Dependencies/ldid/ldid.hpp

View File

@@ -0,0 +1 @@
../../../../../../Dependencies/AltSign/Dependencies/ldid/sha1.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Categories/NSError+ALTErrors.h

View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/Categories/NSFileManager+Apps.h

1
Pods/Headers/Private/AltSign/alt_ldid.hpp generated Symbolic link
View File

@@ -0,0 +1 @@
../../../../Dependencies/AltSign/AltSign/ldid/alt_ldid.hpp

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cc.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cc_config.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cc_debug.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cc_memory.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cc_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cc_runtime_config.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccaes.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccansikdf.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccasn1.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccblowfish.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cccast.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccchacha20poly1305.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccchacha20poly1305_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cccmac.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccder.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccder_decode_eckey.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccder_encode_eckey.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccder_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccder_rsa.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccdes.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccdh.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccdh_gp.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccdh_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccdigest.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccdigest_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccdrbg.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccdrbg_factory.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccdrbg_impl.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccec.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccec25519.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccec25519_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccec_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccecies.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccecies_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cchkdf.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cchmac.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccmd2.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccmd4.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccmd5.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccmode.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccmode_factory.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccmode_impl.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccmode_siv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccmode_siv_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccn.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccn_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccnistkdf.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccpad.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccpbkdf2.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccprime.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrc2.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrc4.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccripemd.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrng.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrng_drbg.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrng_ecfips_test.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrng_pbkdf2_prng.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrng_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrng_rsafips_test.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrng_sequence.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrng_system.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrng_test.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrsa.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccrsa_priv.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccsha1.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccsha2.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccsrp.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccsrp_gp.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/cctest.h

View File

@@ -0,0 +1 @@
../../../../../Dependencies/AltSign/Dependencies/corecrypto/ccwrap.h

Some files were not shown because too many files have changed in this diff Show More