mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-04-28 12:17:57 +03:00
10 lines
179 B
Java
10 lines
179 B
Java
package android.app;
|
|
|
|
import android.content.res.Configuration;
|
|
|
|
public class UiModeManager {
|
|
|
|
public int getCurrentModeType() {
|
|
return Configuration.UI_MODE_TYPE_NORMAL;
|
|
}
|
|
}
|