dab1425dea
### 🐛 Bug Fixes - Fix random crashes when switching video sources in settings management - Enhanced VodConfig.setHome() null pointer exception handling - Improved Fragment lifecycle checks to prevent crashes - Optimized HistoryDialog source switching safety - Enhanced thread safety for concurrent loading ### ⚡ Performance Improvements - Added automatic cache cleaning functionality - Improved memory usage optimization - Enhanced network request stability ### 🆕 New Features - Added comprehensive error handling mechanisms - Enhanced crash protection functionality - Improved Fragment state validation ### 📱 Build Improvements - Updated README with professional documentation - Enhanced build configuration for ARM64-V8A and ARM V7A - Improved APK packaging and signing process
26 lines
692 B
HTML
26 lines
692 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-TW">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
|
|
<title>解析</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container"></div>
|
|
<script>
|
|
const jxs = "%s";
|
|
const url = "%s";
|
|
const list = jxs.split(";");
|
|
const container = document.getElementById('container');
|
|
list.forEach(item => {
|
|
const iframe = document.createElement('iframe');
|
|
iframe.src = item + url;
|
|
iframe.sandbox = 'allow-scripts allow-same-origin allow-forms';
|
|
container.appendChild(iframe);
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |