mirror of
https://github.com/nextcloud/talk-android
synced 2025-08-05 11:05:10 +01:00
16 lines
423 B
Kotlin
16 lines
423 B
Kotlin
/*
|
|
* 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.interfaces
|
|
|
|
interface ClosedInterface {
|
|
|
|
val isGooglePlayServicesAvailable: Boolean
|
|
fun providerInstallerInstallIfNeededAsync()
|
|
fun setUpPushTokenRegistration()
|
|
}
|