Spanish a vuelta con paypal

cervantico

Member
Licensed User
Longtime User
en el log me da los siguientes mensajes:

Ready: true
Success: false, Extra: canceled
** Activity (main) Pause, UserClosed = false **
onActivityResult: wi is null
** Activity (main) Resume **

utilizo el código de ejemplo que encontré en el foro:

Sub GlobalsDim pp As PayPalEnd
SubSub Activity_Create(FirstTime AsBoolean)
pp.Initialize("APP-80W284485P519543T", True, "paypal")
End SubSub
PayPal_Ready (Success AsBoolean)
Log("Ready: " & Success)
If Success Then
Activity.AddView(pp.GetPayPalButton(True), 0, 0, 200dip, 100dip)
EndIf
End Sub
Sub PayPal_Click
pp.RequestPayment("USD", 100, "example-facilitator@domain.com", "My Company", _
pp.PAYMENT_TYPE_SERVICE)
End SubSub
PayPal_Result (Success AsBoolean, Extra AsString)
Log("Success: " & Success & ", Extra: " & Extra)
End Sub

al pulsar el botón de paypal no sucede nada.
donde estoy cometiendo el error?
 

Heppy

Active Member
Licensed User
Longtime User
Hola cervantico.

No he usado la librería paypal, pero se me ocurren varias cosas:

1 - ¿Has modificado el manifiest
B4X:
AddApplicationText(
<activity android:name="com.paypal.android.MEP.PayPalActivity"
   android:theme="@android:style/Theme.Translucent.NoTitleBar"
   android:configChanges="keyboardHidden|orientation"/>)

2-¿Has copiado el Paypal MPL SDK al directorio de las librerias?

Te contesto por si te doy alguna pista, ya te digo que no he usado esta librería.
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…