My consultation with volley in android does not return anything

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP



My consultation with volley in android does not return anything



I have a function that should return a list with all the objects that I have in a webservice made in php, for this I am using php, but it is the first time I use webservices, and I am a bit lost, the fact is that I am doing the consultation with Volley, I saw some examples, I read the documentation, but this code still does not return anything, I thought it could be the list with the final prefix, but it returns the empty list, this is the code of the function:


public List<Artist> getArtist()

final List<Artist> artistList= new ArrayList<>();
String ip= "http://192.168.58.2:8089/ArtistBCV/consultArtists.php";
Log.v("url",ip);

StringRequest stringRequest = new StringRequest(Request.Method.GET, ip,
new Response.Listener<String>()
@Override
public void onResponse(String response)
//hiding the progressbar after completion
try
Artist artist=null;
//getting the whole json object from the response
JSONObject obj = new JSONObject(response);

//we have the array named hero inside the object
//so here we are getting that json array
JSONArray heroArray = obj.getJSONArray("artistas");

//now looping through all the elements of the json array
for (int i = 0; i < heroArray.length(); i++)

artist= new Artist();
JSONObject jsonObject=heroArray.getJSONObject(i);
Log.v("TESTO",""+jsonObject.optInt("id_artist"));
artist.setId_artist(jsonObject.optInt("id_artist"));
artist.setName_artist(jsonObject.optString("name_artist"));
artist.setDeathDate_artist(jsonObject.optString("deathDate_artist"));
artist.setBirthDate_artist(jsonObject.optString("birthDate_artist"));
artist.setBiography_artist(jsonObject.optString("biography_artist"));
artist.setPortrait_artist(jsonObject.optString("portrait_artist"));
artist.setPortraitIndividual(jsonObject.optString("portrait_individual"));
artistList.add(artist);

catch (JSONException e)
Log.v("ERIRRIRIRIRIRI",""+e.toString());


,
new Response.ErrorListener()
@Override
public void onErrorResponse(VolleyError error)
//displaying the error in toast if occurrs
Toast.makeText(getApplicationContext(), error.getMessage(), Toast.LENGTH_SHORT).show();


);

RequestQueue requestQueue = Volley.newRequestQueue(this);

//adding the string request to request queue
requestQueue.add(stringRequest);

Log.v("!!!!!!!SIZE!!!!!!!!!", ""+artistList.size());

return artistList;





Unfortunately, your question is not answerable. It boils down to why your server is apparently giving you no results. We can't tell you that ... without some more evidence; e.g. error messages, stacktraces, server-side log messages, etcetera.
– Stephen C
Aug 12 at 2:29





thanks for trying to help me, I really do not know if it is a bug related to my problem, the thing is that there is no exception in runtime could share, the whole process performed in the console, specifically in the run tab, is in the Answers section, given its extension.
– Hers
Aug 12 at 3:11




1 Answer
1



result:


08/11 22:50:02: Launching app
$ adb install-multiple -r -t -p test.com.myapplication C:UsersEndersonAndroidStudioProjectsMyApplication6appbuildintermediatessplit-apkdebugslicesslice_0.apk C:UsersEndersonAndroidStudioProjectsMyApplication6appbuildintermediatessplit-apkdebugslicesslice_3.apk C:UsersEndersonAndroidStudioProjectsMyApplication6appbuildintermediatesinstant-run-apkdebugapp-debug.apk
Split APKs installed
$ adb shell am start -n "test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Client not ready yet..Waiting for process to come online
Connected to process 9328 on device blu-blu_neo_x_mini-1090018016014924
Capturing and displaying logcat messages from application. This behavior can be disabled in the "Logcat output" section of the "Debugger" settings page.
I/art: Late-enabling -Xcheck:jni
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_dependencies_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_dependencies_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_0_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_0_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_1_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_1_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_2_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_2_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_3_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_3_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_4_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_4_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_5_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_5_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_6_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_6_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_7_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_7_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_8_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_8_apk.apk@classes.dex) because non-0 exit status
W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=interpret-only --instruction-set-variant=cortex-a7 --instruction-set-features=default --dex-file=/data/app/test.com.myapplication-2/split_lib_slice_9_apk.apk --oat-file=/data/dalvik-cache/arm/data@app@test.com.myapplication-2@split_lib_slice_9_apk.apk@classes.dex) because non-0 exit status
D/ActivityThread: installProvider: context.getPackageName()=test.com.myapplication
I/InstantRun: starting instant run server: is main process
V/InstantRun: Starting server socket listening for package test.com.myapplication on android.net.LocalSocketAddress@2b4540d
V/InstantRun: Started server for package test.com.myapplication
D/ActivityThread: BIND_APPLICATION handled : 0 / AppBindDataappInfo=ApplicationInfo49c61d3 test.com.myapplication
V/ActivityThread: Handling launch of ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity startsNotResumed=false
W/art: Verification of boolean android.support.v4.app.FragmentManagerImpl.modifiesAlpha(android.animation.Animator) took 125.687ms
V/ActivityThread: ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity: app=android.app.Application@9243e3c, appName=test.com.myapplication, pkg=test.com.myapplication, comp=test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity, dir=/data/app/test.com.myapplication-2/base.apk
W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
I/System: FinalizerDaemon: finalize objects = 1
E/MultiWindowProxy: getServiceInstance failed!
V/TAMAÑO DE LISTA: 0
I/System.out: [CDS][DNS] getAllByNameImpl netId = 0
D/libc-netbsd: [getaddrinfo]: hostname=simplifiedcoding.net; servname=(null); netid=0; mark=0
[getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
[getaddrinfo]: hostname=simplifiedcoding.net; servname=(null); netid=0; mark=0
[getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=1024; ai_family=0
V/ActivityThread: Performing resume of ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity
D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity
V/ActivityThread: Resume ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity started activity: false, hideForNow: false, finished: false
V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.PhoneWindow$DecorViewa150228 I.E...... R.....ID 0,0-0,0
D/WindowClient: Add to mViews: com.android.internal.policy.PhoneWindow$DecorViewa150228 I.E...... R.....ID 0,0-0,0, this = android.view.WindowManagerGlobal@c3cfdfd
D/OpenGLRenderer: Dumper init 2 threads <0xb8e9baf0>
D/OpenGLRenderer: <test.com.myapplication> is running.
D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: false
D/OpenGLRenderer: CanvasContext() 0xb8ea1438
D/ViewRootImpl: hardware acceleration is enabled, this = ViewRoota096af2 test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity,ident = 0
V/ActivityThread: Resuming ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity with isForward=true
V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoota096af2 test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity,ident = 0, this =com.android.internal.policy.PhoneWindow$DecorViewa150228 V.E...... R.....ID 0,0-0,0
V/ActivityThread: Scheduling idle handler for ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity
D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity
D/Surface: Surface::allocateBuffers(this=0xb8ec99d8)
D/OpenGLRenderer: CanvasContext() 0xb8ea1438 initialize window=0xb8ec99e0, title=test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity
D/libc-netbsd: getaddrinfo: simplifiedcoding.net get result from proxy gai_error = 0
I/OpenGLRenderer: Initialized EGL, version 1.4
D/OpenGLRenderer: Created EGL context (0xb8ef15e0)
I/System.out: [CDS]rx timeout:10000
I/System.out: [socket][0] connection simplifiedcoding.net/104.18.57.189:443;LocalPort=60135(10000)
I/System.out: [CDS]connect[simplifiedcoding.net/104.18.57.189:443] tm:10
D/Posix: [Posix_connect Debug]Process test.com.myapplication :443
I/OpenGLRenderer: Get enable program binary service property (1)
Initializing program atlas...
D/ProgramBinary/Service: BpProgramBinaryService.getFileDescriptor
D/ProgramBinary/Service: BpProgramBinaryService.getProgramMapLen
BpProgramBinaryService.getProgramMapArray
D/ProgramBinary/Service: BpProgramBinaryService.getProgramBinaryLen
I/OpenGLRenderer: Program binary detail: Binary length is 111796, program map length is 152.
Succeeded to mmap program binaries. File descriptor is 42, and path is /dev/ashmem��Ҷh�Ƶ�L��.
No need to use file discriptor anymore, close fd(42).
D/OpenGLRenderer: Initializing program cache from 0xb6d5603c, size = 5
D/OpenGLRenderer: -- init (key = 0x0000000000000000)
-- init (key = 0x0000000000000001)
D/OpenGLRenderer: -- init (key = 0x0000000800000003)
-- init (key = 0x0000000800500041)
D/OpenGLRenderer: -- init (key = 0x0000003800000000)
D/Surface: Surface::connect(this=0xb8ec99d8,api=1)
W/libEGL: [ANDROID_RECORDABLE] format: 1
D/Surface: Surface::setBufferCount(this=0xb8ec99d8,bufferCount=4)
D/GraphicBuffer: register, handle(0xb8ef9898) (w:480 h:854 s:480 f:0x1 u:0x000f02)
W/art: Before Android 4.1, method int android.support.v7.widget.DropDownListView.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
V/InputMethodManager: onWindowFocus: null softInputMode=288 first=true flags=#1810100
V/InputMethodManager: START INPUT: com.android.internal.policy.PhoneWindow$DecorViewa150228 V.E...... R.....ID 0,0-480,854 ic=null tba=android.view.inputmethod.EditorInfo@558a9a1 controlFlags=#104
I/System.out: [socket][/192.168.1.102:60135] connected
D/OpenGLRenderer: CacheTexture 8 upload: x, y, width height = 0, 0, 512, 246
D/OpenGLRenderer: ProgramCache save to disk, size = 5
D/GraphicBuffer: register, handle(0xb8f9e198) (w:480 h:854 s:480 f:0x1 u:0x000f02)
D/libc-netbsd: [getaddrinfo]: hostname=simplifiedcoding.net; servname=(null); netid=0; mark=0
[getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
D/NativeCrypto: ssl=0xb7fc0cd0 NativeCrypto_SSL_do_handshake fd=0xa43efb00 shc=0xa43efb04 timeout_millis=10000 client_mode=1 npn=0x0
doing handshake ++
ssl=0xb7fc0cd0 info_callback where=0x10 ret=1
ssl=0xb7fc0cd0 handshake start in CINIT before connect initialization
ssl=0xb7fc0cd0 info_callback calling handshakeCompleted
D/NativeCrypto: ssl=0xb7fc0cd0 info_callback completed
ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:CINIT before connect initialization
ssl=0xb7fc0cd0 info_callback ignored
ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3WCH_A SSLv3 write client hello A
ssl=0xb7fc0cd0 info_callback ignored
ssl=0xb7fc0cd0 info_callback where=0x1002 ret=-1
ssl=0xb7fc0cd0 SSL_connect:error exit in 3RSH_A SSLv3 read server hello A
ssl=0xb7fc0cd0 info_callback ignored
doing handshake -- ret=-1
ssl=0xb7fc0cd0 NativeCrypto_SSL_do_handshake ret=-1 errno=11 sslError=2 timeout_millis=10000
D/NativeCrypto: doing handshake ++
ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
D/NativeCrypto: ssl=0xb7fc0cd0 SSL_connect:3RSH_A SSLv3 read server hello A
ssl=0xb7fc0cd0 info_callback ignored
ssl=0xb7fc0cd0 info_callback where=0x1002 ret=-1
ssl=0xb7fc0cd0 SSL_connect:error exit in 3RSC_A SSLv3 read server certificate A
ssl=0xb7fc0cd0 info_callback ignored
doing handshake -- ret=-1
ssl=0xb7fc0cd0 NativeCrypto_SSL_do_handshake ret=-1 errno=11 sslError=2 timeout_millis=10000
D/NativeCrypto: doing handshake ++
ssl=0xb7fc0cd0 info_callback where=0x1002 ret=-1
ssl=0xb7fc0cd0 SSL_connect:error exit in 3RSC_A SSLv3 read server certificate A
ssl=0xb7fc0cd0 info_callback ignored
doing handshake -- ret=-1
ssl=0xb7fc0cd0 NativeCrypto_SSL_do_handshake ret=-1 errno=11 sslError=2 timeout_millis=10000
D/NativeCrypto: doing handshake ++
ssl=0xb7fc0cd0 info_callback where=0x1002 ret=-1
ssl=0xb7fc0cd0 SSL_connect:error exit in 3RSC_A SSLv3 read server certificate A
ssl=0xb7fc0cd0 info_callback ignored
doing handshake -- ret=-1
ssl=0xb7fc0cd0 NativeCrypto_SSL_do_handshake ret=-1 errno=11 sslError=2 timeout_millis=10000
D/NativeCrypto: doing handshake ++
E/NativeCrypto: ssl=0xb7fc0cd0 cert_verify_callback x509_store_ctx=0xa43ef92c arg=0x0
E/NativeCrypto: ssl=0xb7fc0cd0 cert_verify_callback calling verifyCertificateChain authMethod=ECDHE_ECDSA
D/NativeCrypto: ssl=0xb7fc0cd0 cert_verify_callback => 1
ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3RSC_A SSLv3 read server certificate A
ssl=0xb7fc0cd0 info_callback ignored
D/NativeCrypto: ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3RSKEA SSLv3 read server key exchange A
ssl=0xb7fc0cd0 info_callback ignored
ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3RSD_A SSLv3 read server done A
ssl=0xb7fc0cd0 info_callback ignored
D/NativeCrypto: ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3WCKEA SSLv3 write client key exchange A
ssl=0xb7fc0cd0 info_callback ignored
ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3WCCSA SSLv3 write change cipher spec A
ssl=0xb7fc0cd0 info_callback ignored
ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3WFINA SSLv3 write finished A
ssl=0xb7fc0cd0 info_callback ignored
D/NativeCrypto: ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3FLUSH SSLv3 flush data
ssl=0xb7fc0cd0 info_callback ignored
ssl=0xb7fc0cd0 info_callback where=0x1002 ret=-1
ssl=0xb7fc0cd0 SSL_connect:error exit in UNKWN SSLv3 read server session ticket A
ssl=0xb7fc0cd0 info_callback ignored
doing handshake -- ret=-1
ssl=0xb7fc0cd0 NativeCrypto_SSL_do_handshake ret=-1 errno=11 sslError=2 timeout_millis=10000
D/NativeCrypto: doing handshake ++
ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:UNKWN SSLv3 read server session ticket A
ssl=0xb7fc0cd0 info_callback ignored
ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3RCCS_ SSLv3 read change cipher spec
ssl=0xb7fc0cd0 info_callback ignored
D/NativeCrypto: ssl=0xb7fc0cd0 info_callback where=0x1001 ret=1
ssl=0xb7fc0cd0 SSL_connect:3RFINA SSLv3 read finished A
ssl=0xb7fc0cd0 info_callback ignored
ssl=0xb7fc0cd0 info_callback where=0x20 ret=1
ssl=0xb7fc0cd0 handshake done in SSLOK SSL negotiation finished successfully
ssl=0xb7fc0cd0 info_callback calling handshakeCompleted
ssl=0xb7fc0cd0 info_callback completed
ssl=0xb7fc0cd0 info_callback where=0x1002 ret=1
ssl=0xb7fc0cd0 SSL_connect:ok exit in SSLOK SSL negotiation finished successfully
ssl=0xb7fc0cd0 info_callback ignored
D/NativeCrypto: doing handshake -- ret=1
ssl=0xb7fc0cd0 NativeCrypto_SSL_get_certificate => NULL
I/System.out: gba_cipher_suite:TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
I/System.out: [CDS]rx timeout:0
[CDS]rx timeout:0
D/NativeCrypto: ssl=0xb7fc0cd0 sslWrite buf=0xb8ecf648 len=24 write_timeout_millis=0
D/NativeCrypto: ssl=0xb7fc0cd0 sslWrite buf=0xb8ecf648 len=15 write_timeout_millis=0
ssl=0xb7fc0cd0 sslWrite buf=0xb8ecf648 len=13 write_timeout_millis=0
D/NativeCrypto: ssl=0xb7fc0cd0 sslRead buf=0xb8ed04d0 len=8192,timeo=0
D/NativeCrypto: ssl=0xb7fc0cd0 sslRead buf=0xb8ed04d0 len=8192,timeo=0
D/NativeCrypto: ssl=0xb7fc0cd0 sslWrite buf=0xb8fb8ae8 len=55 write_timeout_millis=0
sslNotify, appData=0xb8e97e18 ret=1
D/NativeCrypto: sslSelect, appData=0xb8e97e18 woken up by a token
sslSelect, appData=0xb8e97e18 read ret=1
sslSelect, appData=0xb8e97e18 woken up by a token
D/NativeCrypto: sslSelect, appData=0xb8e97e18 read ret=1
D/NativeCrypto: ssl=0xb7fc0cd0 sslWrite buf=0xb8fb8ae8 len=9 write_timeout_millis=0
sslNotify, appData=0xb8e97e18 ret=1
D/NativeCrypto: sslSelect, appData=0xb8e97e18 woken up by a token
D/NativeCrypto: sslSelect, appData=0xb8e97e18 read ret=1
sslSelect, appData=0xb8e97e18 woken up by a token
sslSelect, appData=0xb8e97e18 read ret=1
D/NativeCrypto: ssl=0xb7fc0cd0 sslRead buf=0xb8ed04d0 len=8192,timeo=0
D/NativeCrypto: ssl=0xb7fc0cd0 sslRead buf=0xb8ed04d0 len=8192,timeo=0
D/NativeCrypto: ssl=0xb7fc0cd0 sslRead buf=0xb8ed04d0 len=8192,timeo=0
D/NativeCrypto: ssl=0xb7fc0cd0 sslWrite buf=0xb8fb8ae8 len=26 write_timeout_millis=0
D/NativeCrypto: sslNotify, appData=0xb8e97e18 ret=1
D/NativeCrypto: sslSelect, appData=0xb8e97e18 woken up by a token
sslSelect, appData=0xb8e97e18 read ret=1
sslSelect, appData=0xb8e97e18 woken up by a token
sslSelect, appData=0xb8e97e18 read ret=1
D/NativeCrypto: ssl=0xb7fc0cd0 sslRead buf=0xb8ed04d0 len=8192,timeo=0
D/NativeCrypto: ssl=0xb7fc0cd0 sslRead buf=0xb8ed04d0 len=8192,timeo=0
ssl=0xb7fc0cd0 sslRead buf=0xb8ed04d0 len=8192,timeo=0
D/OpenGLRenderer: CacheTexture 8 upload: x, y, width height = 0, 0, 512, 251
V/InputMethodManager: START INPUT: com.android.internal.policy.PhoneWindow$DecorViewa150228 V.E...... R....... 0,0-480,854 ic=null tba=android.view.inputmethod.EditorInfo@9729912 controlFlags=#100
D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity
D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 0 / android.os.BinderProxy@573460e
V/ActivityThread: Finishing stop of ActivityRecord8962110 token=android.os.BinderProxy@573460e test.com.myapplication/test.com.BCVArtist.Activitys.MainActivity: show=true win=com.android.internal.policy.PhoneWindow@65ad8e3
D/ActivityThread: ACT-STOP_ACTIVITY_SHOW handled : 0 / android.os.BinderProxy@573460e
Application terminated.





This should be in the Question. Use the "edit" link beneath the Question! But I don't think it tells us anything anyway.
– Stephen C
Aug 12 at 4:03







By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

Firebase Auth - with Email and Password - Check user already registered

Dynamically update html content plain JS

How to determine optimal route across keyboard