forked from rileytestut/Delta
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
1 parent
82bfbd0
commit 6cca0f2
Showing
1,647 changed files
with
133,358 additions
and
1,277 deletions.
There are no files selected for viewing
Submodule DSDeltaCore
updated
9 files
+28 −0 | DSDeltaCore.podspec | |
+25 −11 | DSDeltaCore.xcodeproj/project.pbxproj | |
+5 −2 | DSDeltaCore/Bridge/DSEmulatorBridge.h | |
+3 −2 | DSDeltaCore/Bridge/DSEmulatorBridge.mm | |
+19 −0 | DSDeltaCore/Bridge/texcache.cpp | |
+8 −17 | DSDeltaCore/DS.swift | |
+1 −0 | DSDeltaCore/DSDeltaCore.h | |
+12 −0 | DSDeltaCore/Types/DSTypes.h | |
+11 −0 | DSDeltaCore/Types/DSTypes.m |
Submodule DeltaCore
updated
13 files
Submodule GBADeltaCore
updated
9 files
Submodule GBCDeltaCore
updated
10 files
Submodule N64DeltaCore
updated
10 files
+20 −0 | N64DeltaCore-RSP/plugin_delta.c | |
+85 −0 | N64DeltaCore-Video/plugin_delta.cpp | |
+60 −0 | N64DeltaCore.podspec | |
+28 −18 | N64DeltaCore.xcodeproj/project.pbxproj | |
+4 −3 | N64DeltaCore/Bridge/N64EmulatorBridge.h | |
+114 −25 | N64DeltaCore/Bridge/N64EmulatorBridge.m | |
+18 −19 | N64DeltaCore/N64.swift | |
+1 −4 | N64DeltaCore/N64DeltaCore.h | |
+14 −0 | N64DeltaCore/Types/N64Types.h | |
+4 −2 | N64DeltaCore/Types/N64Types.m |
Submodule NESDeltaCore
updated
3 files
+27 −0 | NESDeltaCore.podspec | |
+7 −7 | NESDeltaCore/Bridge/NESEmulatorBridge.swift | |
+8 −10 | NESDeltaCore/NES.swift |
Submodule SNESDeltaCore
updated
8 files
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
import UIKit | ||
|
||
import DeltaCore | ||
import Harmony_Dropbox | ||
import Harmony | ||
|
||
import Fabric | ||
import Crashlytics | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
// | ||
|
||
import UIKit | ||
import AVFoundation | ||
|
||
import DeltaCore | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
import UIKit | ||
|
||
import Harmony | ||
import Harmony_Drive | ||
|
||
import Roxas | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,6 @@ | |
// | ||
|
||
import Harmony | ||
import Harmony_Drive | ||
import Harmony_Dropbox | ||
|
||
private extension UserDefaults | ||
{ | ||
|
Submodule Harmony
updated
3 files
+1 −1 | Backends/Drive | |
+31 −0 | Harmony.podspec | |
+0 −30 | Harmony/Model/Reference.swift |
Submodule Roxas
updated
15 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,23 @@ | ||
platform :ios, '10.0' | ||
platform :ios, '12.0' | ||
|
||
use_frameworks! | ||
inhibit_all_warnings! | ||
|
||
target 'Delta' do | ||
pod 'SQLite.swift', '~> 0.11.0' | ||
use_modular_headers! | ||
|
||
pod 'SQLite.swift', '~> 0.12.0' | ||
pod 'SDWebImage', '~> 3.8' | ||
pod 'Fabric', '~> 1.6.0' | ||
pod 'Crashlytics', '~> 3.8.0' | ||
pod 'SMCalloutView' | ||
|
||
pod 'DeltaCore', :path => 'Cores/DeltaCore' | ||
pod 'NESDeltaCore', :path => 'Cores/NESDeltaCore' | ||
pod 'SNESDeltaCore', :path => 'Cores/SNESDeltaCore' | ||
pod 'N64DeltaCore', :path => 'Cores/N64DeltaCore' | ||
pod 'GBCDeltaCore', :path => 'Cores/GBCDeltaCore' | ||
pod 'GBADeltaCore', :path => 'Cores/GBADeltaCore' | ||
pod 'DSDeltaCore', :path => 'Cores/DSDeltaCore' | ||
pod 'Roxas', :path => 'External/Roxas' | ||
pod 'Harmony', :path => 'External/Harmony' | ||
end |
Oops, something went wrong.