That is the question, my application works with the server and there are several addresses where the application communicates with the server
This is how it looks
<string name="url_app_login">http://52.58.65.000/applogin</string> <string name="url_create_user_avatar_response">http://52.58.65.000/createuseravatarrespone</string> <string name="url_create_user_avatar">http://52.58.65.000/createuseravatar</string> <string name="url_app_reg">http://52.58.65.000/appreg</string> <string name="url_app_res_pass">http://52.58.65.000/apprespass</string> <string name="url_get_avatar">http://52.58.65.000/mservices/getuseravatar/id=</string> <string name="url_check_name_exist">http://52.58.65.000/checknameexist</string> <string name="url_reg_user">http://52.58.65.000/reguser</string>
Is it possible to somehow make http://52.58.65.000/
in a variable and the rest to be added?
Without putting it into the code so that it would continue to be all the resources ...