Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BaseActivity.java « base « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09f71017c6556fb9a8591034b46125d9b0b55c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.mapswithme.maps.base;

import android.app.Activity;
import android.support.annotation.NonNull;
import android.support.annotation.StyleRes;

public interface BaseActivity
{
  @NonNull
  Activity get();
  @StyleRes
  int getThemeResourceId(@NonNull String theme);
}