Posts by Leonardo Dias • 1 point
2 posts
-
0
votes1
answer89
viewsA: Build with problems
Fala Thiago, Try to change your: buildToolsVersion '23.0.2' for buildToolsVersion '23.0.0' Hugs.
-
0
votes3
answers156
viewsA: ANDROID - ERROR: Unchecked cast: java.lang.Object to java.util.vector
Puts the @SuppressWarnings("unchecked")on top of the statement, thus: @SuppressWarnings("unchecked") Vector<SoapObject> resposta = (Vector<SoapObject>) envelope.getResponse(); If you…