mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-02-07 14:58:24 +00:00
Add new lime v2 callback
This commit is contained in:
parent
3c0a2eadda
commit
4f0f16b561
8 changed files with 69 additions and 2 deletions
|
|
@ -1771,6 +1771,13 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
|
|||
}
|
||||
}
|
||||
|
||||
public void onQrcodeFound(Core lc, String something){
|
||||
@Override
|
||||
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -762,6 +762,16 @@ private static AssistantActivity instance;
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
|
||||
public CountryListAdapter getCountryListAdapter() {
|
||||
return countryListAdapter;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -123,4 +123,14 @@ public class CreateAccountActivationFragment extends Fragment implements OnClick
|
|||
public void onUpdateAccount(AccountCreator accountCreator, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -210,4 +210,14 @@ public class CreateAccountCodeActivationFragment extends Fragment implements Acc
|
|||
public void onUpdateAccount(AccountCreator accountCreator, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -705,4 +705,14 @@ public class CreateAccountFragment extends Fragment implements CompoundButton.On
|
|||
public void onUpdateAccount(AccountCreator accountCreator, Status status, String resp) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -399,4 +399,14 @@ public class LinphoneLoginFragment extends Fragment implements CompoundButton.On
|
|||
public void onUpdateAccount(AccountCreator accountCreator, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -678,4 +678,14 @@ public class AccountPreferencesFragment extends PreferencesListFragment implemen
|
|||
LinphoneUtils.displayErrorAlert(LinphoneUtils.errorForStatus(status), LinphoneActivity.instance());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit b72bec13af73f03cb2e5befcfb504f4a6e9f9e31
|
||||
Subproject commit d7ac8b620e13fd0c7468fe0a2e6ebbfb3e4651d2
|
||||
Loading…
Add table
Reference in a new issue