Skip to content

Commit

Permalink
- update to latest kukai-core-swift
Browse files Browse the repository at this point in the history
- integrate OperationUnknown to WC2
- manually bump version to deal with separate audit build
  • Loading branch information
simonmcl committed Jan 12, 2024
1 parent f09ef83 commit d415c17
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Kukai Mobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2354,7 +2354,7 @@
CODE_SIGN_ENTITLEMENTS = "Kukai Mobile/Kukai Mobile.entitlements";
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 231;
CURRENT_PROJECT_VERSION = 232;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = TK7KK2VPJP;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = TK7KK2VPJP;
Expand Down Expand Up @@ -2394,7 +2394,7 @@
CODE_SIGN_IDENTITY = "iPhone Distribution";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 231;
CURRENT_PROJECT_VERSION = 232;
DEVELOPMENT_TEAM = TK7KK2VPJP;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = TK7KK2VPJP;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -2580,7 +2580,7 @@
CODE_SIGN_IDENTITY = "iPhone Distribution";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 231;
CURRENT_PROJECT_VERSION = 232;
DEVELOPMENT_TEAM = TK7KK2VPJP;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = TK7KK2VPJP;
ENABLE_BITCODE = NO;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"location" : "https://github.com/kukai-wallet/kukai-core-swift",
"state" : {
"branch" : "develop",
"revision" : "4ad4585f999a0b2dea57213a3154b91d762a9aba"
"revision" : "3c5e492f50d062cdc199622d63e826e640baec25"
}
},
{
Expand Down
5 changes: 5 additions & 0 deletions Kukai Mobile/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
}
#endif


// Setup any necessary settings, such as RAM limits
MediaProxyService.setupKingfisher()


// process special arguments coming from XCUITest to do things like show keyboard and reset app data
processXCUITestArguments()

Expand Down
2 changes: 1 addition & 1 deletion Kukai Mobile/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>231</string>
<string>232</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion Kukai Mobile/Models/WalletConnectRequestParams.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct WalletConnectRequestParams: Codable {
case "delegation":
convertedOp = WalletConnectRequestParams.convert(json: opJson, toKukaiOpType: OperationDelegation.self, forAccount: account)
default:
convertedOp = nil
convertedOp = WalletConnectRequestParams.convert(json: opJson, toKukaiOpType: OperationUnknown.self, forAccount: account)
}

// If it worked, add to array
Expand Down
2 changes: 1 addition & 1 deletion Kukai MobileTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>231</string>
<string>232</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion Kukai MobileUITests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>231</string>
<string>232</string>
</dict>
</plist>

0 comments on commit d415c17

Please sign in to comment.