mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-18 11:09:39 +01:00
29 lines
715 B
Java
29 lines
715 B
Java
/*
|
|
* Nextcloud Talk - Android Client
|
|
*
|
|
* SPDX-FileCopyrightText: 2022 Marcel Hibbe <dev@mhibbe.de>
|
|
* SPDX-FileCopyrightText: 2017-2018 Mario Danic <mario@lovelyhq.com>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
package com.nextcloud.talk.utils;
|
|
|
|
|
|
import com.nextcloud.talk.interfaces.ClosedInterface;
|
|
|
|
public class ClosedInterfaceImpl implements ClosedInterface {
|
|
@Override
|
|
public void providerInstallerInstallIfNeededAsync() {
|
|
// does absolutely nothing :)
|
|
}
|
|
|
|
@Override
|
|
public boolean isGooglePlayServicesAvailable() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void setUpPushTokenRegistration() {
|
|
// no push notifications for generic build variant
|
|
}
|
|
}
|