Ricerche recenti
Nessuna ricerca recente

Durval Peripato Neto
Data ingresso 24 gen 2024
·
Ultima attività 24 gen 2024
Seguiti
0
Follower
0
Attività totali
4
Voti
0
Abbonamenti
2
PANORAMICA ATTIVITÀ
BADGE
ARTICOLI
POST
COMMENTI NELLA COMMUNITY
COMMENTI AGLI ARTICOLI
PANORAMICA ATTIVITÀ
Ultima attività di Durval Peripato Neto
Durval Peripato Neto ha commentato,
Commento nella community 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"
/>
Visualizza commento · Data ultimo post: 24 gen 2024 · Durval Peripato Neto
0
Follower
1
Voto
0
Commenti
Durval Peripato Neto ha commentato,
Commento nella community 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"
/>
`
Visualizza commento · Data ultimo post: 24 gen 2024 · Durval Peripato Neto
0
Follower
0
Voti
0
Commenti