Posts by Guilherme Lucas • 86 points
5 posts
-
1
votes1
answer38
viewsA: How to search STRING inside JSON on Android
Change that part of your code. Remove the text and do so: while ((text = br.readLine()) != null) { sb.append(text); } try { JSONObject jsonObject = new JSONObject(sb.toString());…
-
0
votes1
answer528
viewsA: Cannot add Extension with name 'googleServices', as there is an Extension already Registered with that name
One of the possible reasons for this error is that some library is using a different version of the firebase lib, causing conflict. You should run the command it suggests, see which lib this is to…
-
0
votes1
answer32
viewsA: Error when changing text source - android
You are not creating any link from your Activity with this xml. You need setContentView(id) on onCreate. It would look like this protected void onCreate(Bundle savedInstanceState) {…
androidanswered Guilherme Lucas 86 -
0
votes1
answer30
viewsA: Android task flow app?
Android comes increasingly limiting your app’s action to the scope of your sandbox. This increases security for the user. In case you wait to set the hours, I believe it is not possible, but there…
-
3
votes1
answer36
viewsA: Error on Android
Since you’re doing a request on the main thread, it prioritizes this by rendering the screen, skipping frames, this causes this alert to appear It is recommended not to use the main thread to make…
androidanswered Guilherme Lucas 86