如果核心功能(AngularJS 应用程序初始化、控制器、服务)来自外部源而不包含在项目中,使用 Cordova 开发的混合应用程序是否会通过审核以在 Apple Store 中发布?
index.html 文件将如下所示:
<!DOCTYPE html>
<html>
<head>
<base href="http://test.com:8080/" />
<title>Application</title>
<link href="app.css" rel="stylesheet" />
<script type="text/javascript" src="file:///android_asset/www/js/jsLib.js"></script>
<script type="text/javascript" src="js/jsApp.js"></script>
</head>
<body>
<div ng-app="app"></div>
</body>
</html>
它会通过App Store Review Guidelines中的标准吗?
2.5.2 应用程序应在其捆绑包中自包含,不得在指定容器区域之外读取或写入数据,也不得下载、安装或执行代码,包括其他 iOS、watchOS、macOS 或 tvOS 应用程序。