SlackingVeteran
SlackingVeteran
Hi @maria-farooq, i do not have dns provider configured in my setup. The documentation was for Aws Route 53 and I had no idea how to set it up for...
ICE server is required. you can register free account in https://xirsys.com to get free stun/turn server. bandwidth for turn is not much, only something around 500 MB but if you...
The only reference I have found so far is by using RestComm API for clients for which I have to use post http request. Its doable for now but exposing...
I used retrofit with okhttp to call restcomm api with authorization. I can provide code snippet for that part if it helps, just let me know. On Feb 5, 2018...
I was successfully able to create new clients and authenticate within my android app. As I mentioned in my last comment I had to use retrofit to make post request...
Create retrofit interface: ``` import retrofit2.Call; import retrofit2.http.Field; import retrofit2.http.FormUrlEncoded; import retrofit2.http.Headers; import retrofit2.http.POST; import retrofit2.http.Path; public interface RetrofitService { @FormUrlEncoded @POST("Accounts/{accountSid}/Clients.json") Call createClient(@Path("accountSid") String accountSid, @Field("Login") String login, @Field("Password")...
It is actually quite easy to apply system based theme. I have done it on several other apps I have worked on. Best way to support all device is to...
Why do we need to enter username and password? I think its useless..
if its for Gmail I would better use gmail app for that..
I tried your approach, and RevealBrush works as long as you dont hover over the button. Once you hover over the TitleBar it loses the property, meaning no more RevealBrush....