build: compile release APK and update dependencies (expo-image-manipulator/loader)

This commit is contained in:
2026-05-31 14:24:26 +02:00
parent 69637c4203
commit 2b5a259fe5
1260 changed files with 3804 additions and 166620 deletions
+19
View File
@@ -0,0 +1,19 @@
const Jimp = require('jimp');
async function checkCorners() {
const img = await Jimp.read('Icon.png');
const w = img.bitmap.width;
const h = img.bitmap.height;
const tl = Jimp.intToRGBA(img.getPixelColor(0, 0));
const tr = Jimp.intToRGBA(img.getPixelColor(w - 1, 0));
const bl = Jimp.intToRGBA(img.getPixelColor(0, h - 1));
const br = Jimp.intToRGBA(img.getPixelColor(w - 1, h - 1));
console.log('Top-Left:', tl);
console.log('Top-Right:', tr);
console.log('Bottom-Left:', bl);
console.log('Bottom-Right:', br);
}
checkCorners();