Fix thread issue + updated README
This commit is contained in:
parent
c4680c33f6
commit
641294975d
2 changed files with 6 additions and 2 deletions
2
README
2
README
|
@ -2,7 +2,7 @@
|
|||
****************************
|
||||
|
||||
To build liblinphone for Android, you must:
|
||||
0) download the Android sdk with platform-tools and tools updated to latest revision, then add both 'tools' and 'platform-tools' folders in your path.
|
||||
0) download the Android sdk with platform-tools and tools updated to latest revision (at least API 16 is needed), then add both 'tools' and 'platform-tools' folders in your path.
|
||||
1) download the Android ndk (>=r8b) from google and add it to your path.
|
||||
2) install the autotools: autoconf, automake, aclocal, libtoolize pkgconfig
|
||||
2bis) on some 64 bits systems you'll need the ia32-libs package
|
||||
|
|
|
@ -996,7 +996,11 @@ public class InCallActivity extends FragmentActivity implements
|
|||
// }
|
||||
}
|
||||
|
||||
transfer.setEnabled(LinphoneManager.getLc().getCurrentCall() != null);
|
||||
mHandler.post(new Runnable() {
|
||||
public void run() {
|
||||
transfer.setEnabled(LinphoneManager.getLc().getCurrentCall() != null);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private void showAcceptCallUpdateDialog() {
|
||||
|
|
Loading…
Reference in a new issue