bit-world

Results 6 comments of bit-world

> and you **compile it twice for each row processed** Why twice? I'll fix the rest

> This model is not available in your pull request > > import me.grishka.houseclub.api.model.Contact; can you check, is it ok now?

> phone_number should be phone, because the correct option "phone_number", such response from API, initially did not know, I had to fix it ClubhouseAPI: Raw response: {"num_invites":0,"suggested_invites":[{"phone_number":"+000000","in_app":true,"is_invited":false,"num_friends":73}

> me.grishka.houseclub.api.model.FullUser; this is not my class, it is from origin

> And please add a Navigation to your InviteListFragment and SearchListFragment into HomeFragment to have an access to your new features. Done

package me.grishka.houseclub.api.methods; import me.grishka.houseclub.api.BaseResponse; import me.grishka.houseclub.api.ClubhouseAPIRequest; import me.grishka.houseclub.api.model.FullUser; public class InviteToApp extends ClubhouseAPIRequest { public InviteToApp(String name, String phone_number, String message){ super("POST", "invite_to_app", BaseResponse.class); requestBody=new InviteToApp.Body(name, phone_number, message); } private...