You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.SCREEN_ORIENTATION_ATTRIBUTE = void 0;
|
|
exports.getOrientation = getOrientation;
|
|
exports.setAndroidOrientation = setAndroidOrientation;
|
|
exports.withOrientation = void 0;
|
|
|
|
function _androidPlugins() {
|
|
const data = require("../plugins/android-plugins");
|
|
|
|
_androidPlugins = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _Manifest() {
|
|
const data = require("./Manifest");
|
|
|
|
_Manifest = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
const SCREEN_ORIENTATION_ATTRIBUTE = 'android:screenOrientation';
|
|
exports.SCREEN_ORIENTATION_ATTRIBUTE = SCREEN_ORIENTATION_ATTRIBUTE;
|
|
const withOrientation = (0, _androidPlugins().createAndroidManifestPlugin)(setAndroidOrientation, 'withOrientation');
|
|
exports.withOrientation = withOrientation;
|
|
|
|
function getOrientation(config) {
|
|
return typeof config.orientation === 'string' ? config.orientation : null;
|
|
}
|
|
|
|
function setAndroidOrientation(config, androidManifest) {
|
|
const orientation = getOrientation(config); // TODO: Remove this if we decide to remove any orientation configuration when not specified
|
|
|
|
if (!orientation) {
|
|
return androidManifest;
|
|
}
|
|
|
|
const mainActivity = (0, _Manifest().getMainActivityOrThrow)(androidManifest);
|
|
mainActivity.$[SCREEN_ORIENTATION_ATTRIBUTE] = orientation !== 'default' ? orientation : 'unspecified';
|
|
return androidManifest;
|
|
}
|
|
//# sourceMappingURL=Orientation.js.map
|