Vor Kurzem aufgerufene Suchen
Keine vor kurzem aufgerufene Suchen

Durval Peripato Neto
Beigetreten 24. Jan. 2024
·
Letzte Aktivität 24. Jan. 2024
Folge ich
0
Follower
0
Gesamtaktivitäten
4
Stimmen
0
Abonnements
2
AKTIVITÄTSÜBERSICHT
BADGES
BEITRÄGE
POSTS
COMMUNITY-KOMMENTARE
BEITRAGSKOMMENTARE
AKTIVITÄTSÜBERSICHT
Neueste Aktivität von Durval Peripato Neto
Durval Peripato Neto hat einen Kommentar hinterlassen
Community-Kommentar Q&A - Apps and integrations
override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
super.configureFlutterEngine(flutterEngine)
MethodChannel(flutterEngine.dartExecutor.binaryMessenger, "br.com.flowing/channels").setMethodCallHandler {
call, result ->
if (call.method == "openZenDeskSupport") {
openZenDeskSupport()
result.success(null)
} else{
result.notImplemented()
}
}}
private fun initZenDesk() {
Zendesk.INSTANCE.init(this, {URL},
{ID},
{CLIENT_ID})
//if you need to share the user and email you will need to change this line below
val identity: Identity = AnonymousIdentity()
Zendesk.INSTANCE.setIdentity(identity)
Support.INSTANCE.init(Zendesk.INSTANCE)
}
private fun openZenDeskSupport() {
try {
RequestActivity.builder().show(context)
}catch (e: Exception){
Log.e("Erro",e.toString())
}
}
android:name=".{nameApp}.MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
Kommentar anzeigen · Gepostet 24. Jan. 2024 · Durval Peripato Neto
0
Follower
1
Stimme
0
Kommentare
Durval Peripato Neto hat einen Kommentar hinterlassen
Community-Kommentar Developer - Zendesk SDKs
android:name=".{nameApp}.MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
`
Kommentar anzeigen · Gepostet 24. Jan. 2024 · Durval Peripato Neto
0
Follower
0
Stimmen
0
Kommentare