FAQs
Yes, API Keys are free to create and use.
Yes, you can use thirdweb SDKs without an API key to override the default infrastructure. You will need to provide and pass in your own services to the SDKs.
If you are developing a Unity native or mobile application, you will need to obtain a bundleId
to restrict the Client ID to your application.
-
Unity Native, use either of the following options:
- Log
Utils.GetBundleId()
. - Check the platform-specific options in your Project Settings. It is usually formatted as
com.companyName.productName
based on your top-level Project Settings.
- Log
-
Mobile (React Native)
-
Android
- Open the file
<Project>/android/app/build.gradle
and search for the termapplicationId
:
- Open the file
-
iOS
- Open the file
<Project>/ios/<Project>/Info.plist
and search forCFBundleIdentifier
:
- Open the file
-
Programmatically retrieve
bundleId
for iOS or Android-
Use the
expo-application
package from the@thirdweb-dev/react-native sdk
-
-