braze_plugin
यह फ्लटर के लिए ब्रेज़ प्लगइन है। प्रभावी मार्केटिंग स्वचालन को अपने व्यवसाय को सफलतापूर्वक विस्तार और प्रबंधित करने के लिए आवश्यक है।
Braze Flutter SDK के लिए सार्वजनिक भंडार
{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
Braze Logo Braze Logo
The following snippets show the minimum configuration required to add the Braze Flutter SDK to your app.
flutter pub add braze_plugin
<!-- android/res/values/braze.xml -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string translatable="false" name="com_braze_api_key">YOUR_APP_IDENTIFIER_API_KEY</string>
<string translatable="false" name="com_braze_custom_endpoint">YOUR_CUSTOM_ENDPOINT_OR_CLUSTER</string>
</resources>
<!-- AndroidManifest.xml -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
// AppDelegate.swift
import BrazeKit
import braze_plugin
class AppDelegate: UIResponder, UIApplicationDelegate {
static var braze: Braze? = nil
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil
) -> Bool {
// Setup Braze
let configuration = Braze.Configuration(
apiKey: "<BRAZE_API_KEY>",
endpoint: "<BRAZE_ENDPOINT>"
)
// - Enable logging or customize configuration here
configuration.logger.level = .info
let braze = BrazePlugin.initBraze(configuration)
AppDelegate.braze = braze
return true
}
}
import 'package:braze_plugin/braze_plugin.dart';
// ...
_braze = new BrazePlugin();
// ...
_braze.changeUser("Jane Doe");
For more information about advanced integration options, see the Braze Developer Guide.
The following table lists the minimum supported versions for tools used by the Braze Flutter SDK.
| Tool | Minimum supported version |
|---|---|
| Dart | 2.17.0+ |
| Flutter (integration via CocoaPods) | 1.10.0+ |
| Flutter (integration via CocoaPods or Swift Package Manager) | 3.24.0+ |
| iOS Deployment Target | 12.0+ |
This SDK also inherits requirements from the underlying Braze native SDKs. For more information, see braze-inc/braze-android-sdk and braze-inc/braze-swift-sdk.
The /example folder contains a sample app that illustrates how to integrate and use this package's APIs.
For questions, contact Braze Technical Support for assistance.