Fixed linphone intent for sharing or calling if linphone isn't running
This commit is contained in:
parent
10f34a1979
commit
f3006df3d7
1 changed files with 3 additions and 3 deletions
|
@ -72,11 +72,11 @@ public class LinphoneLauncherActivity extends Activity {
|
||||||
new Runnable() {
|
new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
Intent intent = new Intent(LinphoneLauncherActivity.this, classToStart);
|
startActivity(
|
||||||
startActivity(intent);
|
getIntent().setClass(LinphoneLauncherActivity.this, classToStart));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
1000);
|
500);
|
||||||
}
|
}
|
||||||
|
|
||||||
private class ServiceWaitThread extends Thread {
|
private class ServiceWaitThread extends Thread {
|
||||||
|
|
Loading…
Reference in a new issue