Phonegap 构建无法在很多设备上 运行 - 为什么

Phonegap build is unable to run on a lot of devices - why

谁能告诉我为什么我的应用无法通过 Google Play 安装在许多设备上。我不明白为什么 Google 没有帮助,或者我无法在 Google 系统中找出原因。

例如无法安装到 Samsung Galaxy 平板电脑

这是我的配置文件:

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.pcrypt.app" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
    <name>Password Crypt</name>
    <description>Safe online storage of passwords</description>
    <author email="info@pcrypt.org" href="http://pcrypt.org">Password Crypt</author>
    <content src="index.html" />

    <allow-navigation href="https://pcrypt.org" />
    <allow-intent href="https://pcrypt.org" />
    <allow-intent href="geo:*" />
    <allow-intent href="mailto:*" />
    <access origin="https://pcrypt.org" subdomains="true" />

    <!-- Plugins -->    
    <plugin name="cordova-plugin-geolocation" source="npm" />
    <plugin name="cordova-plugin-inappbrowser" source="npm" />
    <plugin name="cordova-plugin-network-information" source="npm" />
    <plugin name="cordova-plugin-splashscreen" source="npm" />
    <plugin name="cordova-plugin-whitelist" source="npm" />
    <plugin name="cordova-universal-clipboard" source="npm" />
    <plugin name="cordova-plugin-file" source="npm" />
    <plugin name="cordova-plugin-statusbar" source="npm" />

    <!-- Default settings -->
    <preference name="permissions" value="none" />
    <preference name="phonegap-version" value="cli-6.3.0" />
    <preference name="orientation" value="default" />

    <preference name="SplashScreen" value="screen" />
    <preference name="SplashScreenDelay" value="5000" /> <!-- Will be hidden by code -->
    <preference name="SplashScreenBackgroundColor" value="white" /> <!-- does not seam to work - or maybe only on windows? -->
    <preference name="ShowSplashScreen" value="true" />
    <preference name="ShowSplashScreenSpinner" value="false" />  
    <preference name="FadeSplashScreen" value="true" />  
    <preference name="FadeSplashScreenDuration" value="1500" />  

    <!-- Default icon -->
    <icon src="icon.png" /> 

    <!-- Default splash-->
    <splash src="splash.png" />  

    <platform name="android">    
      <!-- Settings -->
      <preference name="fullscreen" value="false" />
      <preference name="SplashMaintainAspectRatio" value="true" />
      <preference name="SplashShowOnlyFirstTime" value="false" />
      <preference name="AutoHideSplashScreen" value="false" /> 
      <preference name="disable-cursor" value="false" />
      <preference name="android-minSdkVersion" value="22" />
      <preference name="android-installLocation" value="auto" />

      <!-- Icons -->
      <icon qualifier="ldpi" src="res/icon/android/icon-36-ldpi.png" />
      <icon qualifier="mdpi" src="res/icon/android/icon-48-mdpi.png" />
      <icon qualifier="hdpi" src="res/icon/android/icon-72-hdpi.png" />
      <icon qualifier="xhdpi" src="res/icon/android/icon-96-xhdpi.png" />

      <!-- Splash -->
      <splash qualifier="land-ldpi" src="res/screen/android/screen-ldpi-landscape.png" />
      <splash qualifier="land-mdpi" src="res/screen/android/screen-mdpi-landscape.png" />
      <splash qualifier="land-hdpi" src="res/screen/android/screen-hdpi-landscape.png" />
      <splash qualifier="land-xhdpi" src="res/screen/android/screen-xhdpi-landscape.png" />    
      <splash qualifier="port-ldpi" src="res/screen/android/screen-ldpi-portrait.png" />
      <splash qualifier="port-mdpi" src="res/screen/android/screen-mdpi-portrait.png" />
      <splash qualifier="port-hdpi" src="res/screen/android/screen-hdpi-portrait.png" />
      <splash qualifier="port-xhdpi" src="res/screen/android/screen-xhdpi-portrait.png" />
    </platform>

    <platform name="ios">    
      <!-- Settings -->
      <preference name="target-device" value="universal" />
      <preference name="webviewbounce" value="true" />
      <preference name="prerendered-icon" value="true" />
      <preference name="stay-in-webview" value="false" />
      <preference name="ios-statusbarstyle" value="black-opaque" />
      <preference name="detect-data-types" value="true" />
      <preference name="exit-on-suspend" value="false" />
      <preference name="BackupWebStorage" value="none" />

      <!-- Hide status bar -->
      <preference name="fullscreen" value="true" />
      <preference name="StatusBarOverlaysWebView" value="false" />
      <gap:config-file platform="ios" parent="UIViewControllerBasedStatusBarAppearance" overwrite="true"> <false/> </gap:config-file>
      <gap:config-file platform="ios" parent="UIStatusBarHidden" overwrite="true"> <true/> </gap:config-file>

      <!-- Icons -->
      <!--<icon height="57" src="res/icon/ios/icon-57.png" width="57" />
      <icon height="72" src="res/icon/ios/icon-72.png" width="72" />
      <icon height="114" src="res/icon/ios/icon-57-2x.png" width="114" />
      <icon height="144" src="res/icon/ios/icon-72-2x.png" width="144" />

      <!- Splash
      <splash height="480" width="320" src="res/screen/ios/screen-iphone-portrait.png" />
      <splash height="960" width="640" src="res/screen/ios/screen-iphone-portrait-2x.png" />
      <splash height="1136" width="640" src="res/screen/ios/screen-iphone-portrait-568h-2x.png" />
      <splash height="1024" width="768" src="res/screen/ios/screen-ipad-portrait.png" />
      <splash height="768" width="1024" src="res/screen/ios/screen-ipad-landscape.png" />

      <gap:splash gap:platform="ios" height="480" src="res/screen/ios/screen-iphone-portrait.png" width="320" />
      <gap:splash gap:platform="ios" height="960" src="res/screen/ios/screen-iphone-portrait-2x.png" width="640" />
      <gap:splash gap:platform="ios" height="1136" src="res/screen/ios/screen-iphone-portrait-568h-2x.png" width="640" />
      <gap:splash gap:platform="ios" height="1024" src="res/screen/ios/screen-ipad-portrait.png" width="768" />
      <gap:splash gap:platform="ios" height="768" src="res/screen/ios/screen-ipad-landscape.png" width="1024" />
      -->

      <splash src="res/screen/ios/Default~iphone.png" width="320" height="480"/>
      <splash src="res/screen/ios/Default@2x~iphone.png" width="640" height="960"/>
      <splash src="res/screen/ios/Default-Portrait~ipad.png" width="768" height="1024"/>
      <splash src="res/screen/ios/Default-Portrait@2x~ipad.png" width="1536" height="2048"/>
      <splash src="res/screen/ios/Default-Landscape~ipad.png" width="1024" height="768"/>
      <splash src="res/screen/ios/Default-Landscape@2x~ipad.png" width="2048" height="1536"/>
      <splash src="res/screen/ios/Default-568h@2x~iphone.png" width="640" height="1136"/>
      <splash src="res/screen/ios/Default-667h.png" width="750" height="1334"/>
      <splash src="res/screen/ios/Default-736h.png" width="1242" height="2208"/>


      <icon src="res/icon/ios/pcrypt_icon.png" width="180" height="180" />
      <icon src="res/icon/ios/pcrypt_icon60.png" width="60" height="60" />
      <icon src="res/icon/ios/pcrypt_icon120.png" width="120" height="120" />
      <icon src="res/icon/ios/pcrypt_icon76.png" width="76" height="76" />
      <icon src="res/icon/ios/pcrypt_icon152.png" width="152" height="152" />
      <icon src="res/icon/ios/pcrypt_icon40.png" width="40" height="40" />
      <icon src="res/icon/ios/pcrypt_icon80.png" width="80" height="80" />
      <icon src="res/icon/ios/pcrypt_icon57.png" width="57" height="57" />
      <icon src="res/icon/ios/pcrypt_icon114.png" width="114" height="114" />
      <icon src="res/icon/ios/pcrypt_icon72.png" width="72" height="72" />
      <icon src="res/icon/ios/pcrypt_icon144.png" width="144" height="144" />
      <icon src="res/icon/ios/pcrypt_icon29.png" width="29" height="29" />
      <icon src="res/icon/ios/pcrypt_icon58.png" width="58" height="58" />
      <icon src="res/icon/ios/pcrypt_icon50.png" width="50" height="50" />
      <icon src="res/icon/ios/pcrypt_icon100.png" width="100" height="100" />

    </platform>    

    <platform name="winphone">    
      <!-- Settings -->
      <preference name="fullscreen" value="false" />

      <!-- Icons -->
      <icon src="res/icon/windows-phone/icon-48.png" />
      <icon role="background" src="res/icon/windows-phone/icon-173-tile.png" />

      <!-- Splash -->
      <splash src="res/screen/windows-phone/screen-portrait.jpg" />
    </platform>      

</widget>

除了最小 SDK 为 22 之外,我找不到任何会导致应用程序无法运行的东西,这将使应用程序无法与 5.0 及更低版本相比。我自己 phone 试用了您的应用程序,它似乎对我来说工作正常。人们报告问题的具体内容是什么?