Return-Path: X-Original-To: apmail-cordova-dev-archive@www.apache.org Delivered-To: apmail-cordova-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 541EC10FCD for ; Thu, 20 Feb 2014 22:27:13 +0000 (UTC) Received: (qmail 16949 invoked by uid 500); 20 Feb 2014 22:27:12 -0000 Delivered-To: apmail-cordova-dev-archive@cordova.apache.org Received: (qmail 16914 invoked by uid 500); 20 Feb 2014 22:27:12 -0000 Mailing-List: contact dev-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list dev@cordova.apache.org Received: (qmail 16906 invoked by uid 99); 20 Feb 2014 22:27:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Feb 2014 22:27:12 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of don.coleman@gmail.com designates 209.85.220.171 as permitted sender) Received: from [209.85.220.171] (HELO mail-vc0-f171.google.com) (209.85.220.171) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Feb 2014 22:27:05 +0000 Received: by mail-vc0-f171.google.com with SMTP id le5so2501583vcb.16 for ; Thu, 20 Feb 2014 14:26:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=RUMSGogZR1BUJvfB+kaAg5+egn/p2kFORYUF7D1qLqw=; b=Fo71w6DL6hDH9bJ/Hn+YBTpBtD8CILw/Ow9v707FepqBik/uqqS3J/HzhZrw2GLfmL AtA5uluhuiX3smL6j89Pw8cEDaavzzXhu92obq0zLQ9jTUskLy9gYMdgbPJvA6whK43e HlSatRP4ISxy1jGkGv+Kb6T8b6Vst/vp4pdaX+5c5XPw+00c8ozSkKKkuuDYvFNxV9Bp J8e/I+cM9SmjZIe87tgfD1jDWM3ycJ8GAR4047SWy3iZBhaTjSKSf1F4vkIPOdFZNlkd hvl0Nsrwecw9pjZHOuDZcs/kCTJwQyFb3BcE58+qU+8EseaU2wg68aDXo7A6dRXnZvQ3 A4sg== MIME-Version: 1.0 X-Received: by 10.53.5.199 with SMTP id co7mr2042225vdd.97.1392935204065; Thu, 20 Feb 2014 14:26:44 -0800 (PST) Received: by 10.52.157.200 with HTTP; Thu, 20 Feb 2014 14:26:44 -0800 (PST) Date: Thu, 20 Feb 2014 17:26:44 -0500 Message-ID: Subject: BlackBerry 10 - config.xml iicon entries are not filtered for gap:platform From: Don Coleman To: "dev@cordova.apache.org" Content-Type: multipart/alternative; boundary=001a1133e66008c76404f2de0064 X-Virus-Checked: Checked by ClamAV on apache.org --001a1133e66008c76404f2de0064 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I have a project that uses PhoneGap build for iOS and Android, and uses Cordova to build for BlackBerry 10. The icons are specified in config.xml When the bar file is built, the Entry-Point-Icon Manifest entry is incorrec= t $ unzip -p platforms/blackberry10/build/device/bb10app.bar META-INF/MANIFEST.MF | grep Entry Entry-Point: WEBWORKS_VERSION=3D2.0.0 CONSOLE_MODE=3Dslog2 CASCADES_THEME=3Ddefault app/native/wwe Entry-Point-Type: Qnx/WebKit Entry-Point-Icon: {72x72}native/icon.png:{36x36}native/res/icon/android/icon-36-ldpi.png:{48x= 48}native/res/icon/android/icon-48-mdpi.png:{72x72}native/res/icon/android/= icon-72-hdpi.png:{96x96}native/res/icon/android/icon-96-xhdpi.png:{80x80}na= tive/res/icon/blackberry/icon-80.png:{57x57}n Entry-Point-Orientation: auto The app looks deploys OK locally and passes blackberry-barchecker, but BlackBerry Enterprise Server rejected the app due to this entry. I fixed the problem by preprocessing the config.xml before the blackberry10 build. Entry-Point: WEBWORKS_VERSION=3D2.0.0 CASCADES_THEME=3Ddefault app/native/w= we Entry-Point-Type: Qnx/WebKit Entry-Point-Icon: native/res/icon/blackberry/icon-80.png Entry-Point-Orientation: auto Is this a problem that Cordova should handle? Or is it a problem with the blackberry-nativepackager? --001a1133e66008c76404f2de0064--