changes for the remote provisioning bug
This commit is contained in:
parent
c554ebb4e8
commit
0cd3a30291
1 changed files with 2 additions and 1 deletions
|
@ -40,9 +40,10 @@ public class RemoteProvisioning {
|
|||
int bytesRead = 0;
|
||||
String strFileContents = "";
|
||||
while( (bytesRead = bis.read(contents)) != -1){
|
||||
strFileContents = new String(contents, 0, bytesRead);
|
||||
strFileContents += new String(contents, 0, bytesRead);
|
||||
}
|
||||
Log.i("Download Success");
|
||||
Log.i(strFileContents);
|
||||
|
||||
// Initialize converter
|
||||
LpConfig lp = LinphoneCoreFactory.instance().createLpConfig(mLocalLP);
|
||||
|
|
Loading…
Reference in a new issue