customerglu_plugin

Creator: coderz1093

Last updated:

0 purchases

customerglu_plugin Image
customerglu_plugin Images

Languages

Categories

Add to Cart

Description:

customerglu plugin

CustomerGlu #
CustomerGlu SDK provides you lots of in-built stuff and make your integration faster with CustomerGlu
Our SDK provides you In-built functions you just need to use them.
Prerequisite #
iOS - Requires IOS 11.0 or above.
Xcode - Version 12.0 or above
Android - Requires minSdkVersion should be 21
Installation #
OPTION 1 -
Add the CustomerGlu Flutter plugin in pubspec.yaml file
customerglu_plugin: ^1.4.0
copied to clipboard
OPTION 2 -
Run this command With Flutter:
flutter pub add customerglu_plugin
copied to clipboard
Initialise CustomerGlu SDK #
Android Setup -
Firstly add the permission of internet in Manifest file.
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />


WriteKey - Mandatory step and need to put your writeKey in meta-data .Write_key are provided by CustomerGlu

<meta-data android:name="CUSTOMERGLU_WRITE_KEY" //Don't Change Name
android:value="YOUR_WRITE_KEY" />

copied to clipboard
If Proguard is enabled in your app, Add the following line in release build.
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),
'proguard-rules.pro'

}
}
copied to clipboard
Create a Proguard rules file if not present and add the following rule in Proguard Rules file:
-keep class com.customerglu.sdk.Modal.*{*;}
copied to clipboard
iOS Setup -
Mandatory step and need to put CustomerGlu WRITE_KEY in Info.plist
<key>CUSTOMERGLU_WRITE_KEY</key>
<string>YOUR_WRITE_KEY</string>

copied to clipboard
Functionalities #
Please refer to the Flutter Docs

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.