Releases: thirdweb-dev/unity
Releases · thirdweb-dev/unity
v5.26.0
macOS OAuth Browser Support
- Added
ASWebAuthenticationSessionfor OAuth (social login) flows on macOS, integrated into the defaultCrossPlatformUnityBrowser. - Enhances security, user experience, and compliance with App Store review guidelines.
- Includes a universal dylib with improved browser selection logic.
- Redirects now deeplink back into the app instead of following the Desktop Windows-style flow.
Note: This only works in builds; in the editor, the original flow will still open a full browser.
v5.25.2
v5.25.1
What's Changed
- Added
AuthProvider.TikTokas a login option for In-App or Ecosystem Wallets.
// Using .NET SDK
var iaw = await InAppWallet.Create(client: twClient, authProvider: AuthProvider.TikTok);
var iawAddy = await steamWallet.LoginWithOauth(...);
// Using Unity SDK
var walletOptions= new WalletOptions(
provider: WalletProvider.InAppWallet,
chainId: 421614,
inAppWalletOptions: new InAppWalletOptions(authprovider: AuthProvider.TikTok);
);
var iaw = await ThirdwebManager.Instance.ConnectWallet(options);
var iawAddy = await steamWallet.GetAddress();v5.25.0
v5.24.1
v5.24.0
v5.23.2
What's Changed
- Fixed an issue where a duplicate symbol iOS build error would occur when using Thirdweb's Unity SDK with Amplitude Analytics Unity SDK.