Android和iOS移动应用程序指向Web应用程序URL

时间:2015-11-10 06:51:54

标签: android ios cordova ionic phonegap-build

目标

我们假设我有一个完全响应的网络应用,例如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/

2 个答案:

答案 0 :(得分:0)

评论摘要:

  1. $ cordova create myProject
  2. 打开config.xml
  3. index.html更改为http://www.example.com
  4. Here is the Cordova documentation

    另请注意,要使用CLI,必须先为目标平台安装SDK。 Click here for the platform guides documentation

    突发新闻:这不起作用。

答案 1 :(得分:0)