mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
10 lines
188 B
Java
10 lines
188 B
Java
package org.linphone.compatibility;
|
|
|
|
import android.view.Display;
|
|
|
|
public class API8Compatibility {
|
|
|
|
public static int getRotation(Display display) {
|
|
return display.getRotation();
|
|
}
|
|
}
|