mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-18 19:19:33 +01:00
14 lines
294 B
Java
14 lines
294 B
Java
/*
|
|
* Nextcloud Talk - Android Client
|
|
*
|
|
* SPDX-FileCopyrightText: 2016 BlueLine Labs, Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
package com.nextcloud.talk.activities;
|
|
|
|
import androidx.appcompat.app.ActionBar;
|
|
|
|
public interface ActionBarProvider {
|
|
ActionBar getSupportActionBar();
|
|
}
|