I am new to Xamarin, and currently building a SQL database driven application which connects to my remote MS SQL Database. To do this, I am supposed to use SQLClient and its commands.
SQL Client requires database connection string which I am using as a string in my application just like this.
string connectionstring="Data Source=SomeRemoteAddress;Initial Catalog=dbname;User ID=userid;Password=xxxxxx;Persist Security Info=True;MultipleActiveResultSets=True;" providerName="System.Data.SqlClient"
Using this connection string, I am able to connect to the database. I am just worried how secure this is. I am building APK file and launching in Playstore.
Suggest me how secure this is. Is there any possibility for hackers to get into the APK File and access my connection string ?
Thanks in Advance.