@crassaert/applovin-quality-service-expo-plugin
Version:
Expo plugin to automate installation of required packages from AppLovin Quality Service
61 lines (60 loc) • 2.62 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.withApplovinQualityServiceIos = void 0;
const config_plugins_1 = require("@expo/config-plugins");
const path = __importStar(require("node:path"));
const fs = __importStar(require("node:fs"));
const copyIosScript = (projectRoot, iosSetupScriptPath) => {
const sourcePath = path.join(projectRoot, iosSetupScriptPath);
const destinationPath = path.join(projectRoot, "ios", "AppLovinQualityServiceSetup-ios.rb");
if (!fs.existsSync(sourcePath)) {
throw new Error(`Source file does not exist: ${sourcePath}`);
}
if (!fs.existsSync(path.dirname(destinationPath))) {
fs.mkdirSync(path.dirname(destinationPath), { recursive: true });
}
fs.copyFileSync(sourcePath, destinationPath);
console.log(`Copied ${sourcePath} to ${destinationPath}`);
};
const withApplovinQualityServiceIos = (config, { iosSetupScriptPath }) => {
config = (0, config_plugins_1.withXcodeProject)(config, (config) => {
const projectRoot = config.modRequest.projectRoot;
copyIosScript(projectRoot, iosSetupScriptPath);
return config;
});
return config;
};
exports.withApplovinQualityServiceIos = withApplovinQualityServiceIos;