Android Bind Service to the Application cross Activities

The Problem Sometimes we want to bind an Android Service in our activities and wrap inside e.g. our communication to our backend. Now the problem arises when we unbind it again. As usually if we change activities we want this service to survive and be in the very next activity. As soon as we close…

Test REST Services with Curl

Problem Often we want an easy way to test our REST services. Even if where are many tools around e.g. Chrome Plugins etc. it is maybe easier on servers to juts use curl to do the job. Basic PUT command curl -X PUT -H „<Header-Name>: <Header-Value>“ „https://<url>“ -v Add basic Authorization Curl already supports basic auth…