Recherches récentes
Pas de recherche récente

Durval Peripato Neto
Adhésion le 24 janv. 2024
·
Dernière activité le 24 janv. 2024
Suivis
0
Abonnés
0
Activité totale
4
Votes
0
Abonnements
2
APERÇU DES ACTIVITÉS
BADGES
ARTICLES
PUBLICATIONS
COMMENTAIRES DE LA COMMUNAUTÉ
COMMENTAIRES SUR L’ARTICLE
APERÇU DES ACTIVITÉS
Dernière activité effectuée par Durval Peripato Neto
Durval Peripato Neto a ajouté un commentaire,
Commentaire de la communauté 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"
/>
Afficher le commentaire · Publication le 24 janv. 2024 · Durval Peripato Neto
0
Abonnés
1
vote
0
Commentaire
Durval Peripato Neto a ajouté un commentaire,
Commentaire de la communauté 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"
/>
`
Afficher le commentaire · Publication le 24 janv. 2024 · Durval Peripato Neto
0
Abonnés
0
Votes
0
Commentaire