4
Answers

Android Deployment Error

Thomas Mapother

Thomas Mapother

13y
2.6k
1
Hello every-one I am start working on android development, the problem is when I am deploying my application every time I need to build the solution as well as application not even once many time I have to build it 2 to 3 time than my application deploying properly otherwise it will gives an error. Can some-body tell me what is the problem...

Thank you....
Answers (4)
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
0
Priyank Khare

Priyank Khare

NA 306 66.8k 12y
thankx for reply but will it be work in case if i will display the total price....
because i think it will display an error during addition of price like "usd 1231 + usd 2465"

what will i do to resolve this problem.?
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
try this

before binding the datatable to gridview.
foreach(DataRow dr in datatable1)
{
dr["price"]=ConfigurationSettings.AppSettings["Currency"] + dr["Price"].ToString();
}

and in web.config.

<AppSettings>
<add key="Currency" value ="USD"/>
</AppSettings>