mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-05-03 06:46:25 +00:00
changes for the remote provisioning bug
This commit is contained in:
parent
8ae1cb1a63
commit
fe2e56ee30
1 changed files with 2 additions and 1 deletions
|
|
@ -40,9 +40,10 @@ public class RemoteProvisioning {
|
||||||
int bytesRead = 0;
|
int bytesRead = 0;
|
||||||
String strFileContents = "";
|
String strFileContents = "";
|
||||||
while( (bytesRead = bis.read(contents)) != -1){
|
while( (bytesRead = bis.read(contents)) != -1){
|
||||||
strFileContents = new String(contents, 0, bytesRead);
|
strFileContents += new String(contents, 0, bytesRead);
|
||||||
}
|
}
|
||||||
Log.i("Download Success");
|
Log.i("Download Success");
|
||||||
|
Log.i(strFileContents);
|
||||||
|
|
||||||
// Initialize converter
|
// Initialize converter
|
||||||
LpConfig lp = LinphoneCoreFactory.instance().createLpConfig(mLocalLP);
|
LpConfig lp = LinphoneCoreFactory.instance().createLpConfig(mLocalLP);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue