我们假设我有一个完全响应的网络应用,例如http://example.com托管。
现在,我想为 Android 和 iOS 构建移动应用, 只指向 我的网站应用程序。即,当用户打开应用程序时,它会将它们导航到example.com以及它。
This StackOverflow answer says:
这就是Android的使用方法:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
context.startActivity(browserIntent);
这就是iOS的用法:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.google.com"]];
但是这个问题是要求 简单程序 。也许有一个简单的CLI用于Cordova,Android SDK,Xcode或类似的东西?
例如,this page表示您可以通过以下命令行访问Android SDK工具:/Users/<user>/Library/Android/sdk/
。
答案 0 :(得分:0)
评论摘要:
$ cordova create myProject
config.xml
index.html
更改为http://www.example.com
Here is the Cordova documentation
另请注意,要使用CLI,必须先为目标平台安装SDK。 Click here for the platform guides documentation
突发新闻:这不起作用。
答案 1 :(得分:0)