PhoneGap 6.1.0 not complying with android-minSdkVersion

I have two applications that I used to build for android on phonegap 5.3.2 with preference:

< name of option = "android-minSdkVersion" value = "21" / >

< name of option = "android-targetSdkVersion" value = "23" / >

I upgraded my environment to work with phonegap 6.1.0:

< name of option = "phonegap-version" value = "cli - 6.1.0" / >

Now build phonegap is android-minSdkVersion 15 + when I try to publish the APK on Store.

Any thoughts?

Thank you

Gustavo

configuration file:

<?xml version='1.0' encoding='utf-8'?>
<widget 
    id="com.valetiapp.valet" 
    version="0.5.3" 
    xmlns="http://www.w3.org/ns/widgets" 
    xmlns:gap="http://phonegap.com/ns/1.0" 
    xmlns:android="http://schemas.android.com/apk/res/android">
    
    <name>Valeti Manobrista</name>
    <description>
        Valeti for valets.
    </description>
    <author email="[email protected]" href="http://valeti.com">
        Valeti App Sistemas Ltda
    </author>
    
  <preference name="phonegap-version" value="cli-6.1.0" />
    <preference name="orientation" value="portrait" />
    <preference name="StatusBarStyle" value="default" />
  <preference name="ShowSplashScreenSpinner" value="false" />
  <preference name="FadeSplashScreen" value="false" />
    <preference name="AutoHideSplashScreen" value="true" />
  <preference name="SplashScreenDelay" value="2000" />
    <preference name="DisallowOverscroll" value="true" />
  <preference name="android-build-tool" value="gradle" />
    <preference name="android-minSdkVersion" value="21" />
   <preference name="android-targetSdkVersion" value="23" />
    
    <access origin="*" />
    <access origin="mailto:*" launch-external="yes" />
    
    <content src="index.html" />

  <!-- Config -->


  <!-- Plugins -->


    <gap:plugin name="cordova-plugin-splashscreen" spec="~3.2.2" source="npm" />
    <gap:plugin name="cordova-plugin-whitelist" spec="~1.2.2" source="npm" />
  <gap:plugin name="phonegap-plugin-barcodescanner" spec="~5.0.1" source="npm" />
  <gap:plugin name="cordova-plugin-device" source="npm" spec="~1.1.2" />
  <gap:plugin name="de.appplant.cordova.plugin.local-notification" spec="~0.8.4" source="npm" />
  <gap:plugin name="cordova-plugin-datecs-printer" spec="~0.3.7" source="npm" />




    <!-- ANDROID Configuration -->
    <engine name="android" />
    <platform name="android">
        
        <preference name="SplashScreen" value="screen"/>
        
        <icon platform="android" qualifier="ldpi" src="res/icons/android/icon-36-ldpi.png"/>
     <icon platform="android" qualifier="mdpi" src="res/icons/android/icon-48-mdpi.png"/>
     <icon platform="android" qualifier="hdpi" src="res/icons/android/icon-72-hdpi.png"/>
     <icon platform="android" qualifier="xhdpi" src="res/icons/android/icon-96-xhdpi.png"/>
     <icon platform="android" qualifier="xxhdpi" src="res/icons/android/icon-144-xxhdpi.png"/>
     <icon platform="android" qualifier="xxxhdpi" src="res/icons/android/icon-192-xxxhdpi.png"/>
     
     <splash platform="android" qualifier="ldpi" src="res/screen/android/ldpi-portrait.png" />
     <splash platform="android" qualifier="mdpi" src="res/screen/android/mdpi-portrait.png" />
     <splash platform="android" qualifier="hdpi" src="res/screen/android/hdpi-portrait.png" />
     <splash platform="android" qualifier="xhdpi" src="res/screen/android/xhdpi-portrait.png" />
        
    </platform>
    
    <!-- IOS Configuration -->
    <engine name="ios" />
    <platform name="ios">
     <icon platform="ios" src="res/icons/ios/icon-small.png" width="29" height="29" />
     <icon platform="ios" src="res/icons/ios/icon-small-2x.png" width="58" height="58" />
     <icon platform="ios" src="res/icons/ios/icon-40.png" width="40" height="40" />
     <icon platform="ios" src="res/icons/ios/icon-40-2x.png" width="80" height="80" />
     <icon platform="ios" src="res/icons/ios/icon-50.png" width="50" height="50" />
     <icon platform="ios" src="res/icons/ios/icon-50-2x.png" width="100" height="100" />
     <icon platform="ios" src="res/icons/ios/icon.png" width="57" height="57" />
     <icon platform="ios" src="res/icons/ios/icon-2x.png" width="114" eight="114" />
     <icon platform="ios" src="res/icons/ios/icon-60.png" width="60" height="60" />
     <icon platform="ios" src="res/icons/ios/icon-60-2x.png" width="120" height="120" />
     <icon platform="ios" src="res/icons/ios/icon-60-3x.png" width="180" height="180" />
     <icon platform="ios" src="res/icons/ios/icon-72.png" width="72" height="72" />
     <icon platform="ios" src="res/icons/ios/icon-72-2x.png" width="144" height="144" />
     <icon platform="ios" src="res/icons/ios/icon-76.png" width="76" height="76" />
     <icon platform="ios" src="res/icons/ios/icon-76-2x.png" width="152" height="152" />
     
     <splash platform="ios" src="res/screen/ios/Default.png" width="320" height="480" />
     <splash platform="ios" src="res/screen/ios/Default_2x.png" width="680" height="960" />
     <splash platform="ios" src="res/screen/ios/Default-568h_2x.png" width="640" height="1136" />
     <splash platform="ios" src="res/screen/ios/Default-Landscape.png" width="1024" height="768" />
     <splash platform="ios" src="res/screen/ios/Default-Landscape_2x.png" width="2048" height="1536" />
     <splash platform="ios" src="res/screen/ios/Default-Portrait.png" width="768" height="1004" />
     <splash platform="ios" src="res/screen/ios/Default-Portrait_2x.png" width="1536" height="2008" />
    </platform>
    <gap:config-file platform="ios" parent="ITSAppUsesNonExemptEncryption" mode="add">
  <false/>
  </gap:config-file>
    
    <splash src="splash.png" />


</widget>

I discovered that the plugin to scan barcode phonegap changed the min sdk version after build via a gradle hook, so it is not related to phonegap 6.1.0.

Tags: PhoneGap

Similar Questions

  • "Printer settings not comply with the configuration of the router.

    Hello

    I'm trying to establish a wireless connection with my printer to my computer, but the answer above, "printer settings not comply with the configuration of the router" someone has the solution please. Peter

    Hello

     
    • What is the brand and model of the printer?
     
    You can check this link:
     
    Network printer problems
     
    I also suggest you to check the manufacturer support for assistance to correct the settings of the printer.
  • QX100 supports Android 4.3? I have a Note 3 with Android cannot connect to QX100 4.3?

    QX100 supports Android 4.3? I have a Note 3 with Android cannot connect to QX100 4.3. I continue to connect and their time.

    Here is the solution to stop the QX100 unplug with your smartphone android 4.3:

    1. go to settings

    2. select Wi - Fi

    3. press and hold the DIRECT-XXXXSC-QX100

    4. select Modify network config

    5 click on show advanced options

    6 make the following changes:

    Proxy settings: None

    IP settings: static

    IP address: 10.0.1.2

    Gateway: 10.0.0.1

    Network prefix length: 24

    DNS 1:                               10.0.0.0

  • New version does not work with android 2.3.6 version

    I'm using Skype in my android samsung galaxy mob there - S5360 GT. for almost a year. It was great. but nw I have updated the Skype & tjis with this new version, that I could not make calls to Skype-Skype... When I answer the call or that the other person answering my call... the call disconnected... it really frustrates... Download the old version of the game of Google. Please give me a solution for this that it really frustrates and I wasn't able to use Skype for more than two weeks.

    New version of Skype donot make calls to mobile

  • SWR10 do not sync with Android on Nexus 6 (5.0.1) Lollipop

    I got my SWR10 3 days ago.

    As a first step, it has been synchronized to my Tablet Nexus 7 (2013) (also running Android 5.0.1) where he has worked and followed all correctly. Sleep was run correctly on the next day.

    The next day, I left the tablet at home because I went to buy my Nexus 6. Connected the smartband to the Nexus 6 and no offline data synchronized. I put this down to change devices and decided to see how it faired today.

    Today, however, she did not on my sleep during the night. He did not follow all the steps throughout the day. But the smartband is connected to the phone and works as I used it for remote media throughout the day mode. The phone was not out of reach of the smartband, as it was in my pocket all day.

    I have a suscpicion that this could be caused by a compatibility problem with LifeLog and Android 5.0.1 that whenever I open I get an error message saying the app crashed and gives me the opportunity to report the accident. I left a report of bugs below screenshot.

    I thought about the solution myself... Well well to least a workaround for now. It seems that the component of the application that crashes is the recorder.

    It seems that it should run to synchronize the data of the smartband, and whenever you open the application this component crashes and to switch off in the settings.

    Rocking back and press the key to exit the application without going back to the view of the timeline and it should remain running in the background.

    All the data that was not in sync reappeared so the smartband must have kept data.

    This seems to be a workaround, Sony difficulty while all that is the question.

  • Satellite C650 does not start with android phone on

    Hello

    I have a smallproblem. My Satellite C650 does not start when my android phone is plugged into the USB port. It sticks to the Toshiba start screen. I checked the boot order and the hard drive is the first on the list, so it isn't that. Any advice will be welcome.

    Thank you very much
    Ian

    Cool. Thanks for the comments.

  • Export to PSD do not comply with the size of the artboard?

    I have my plan of work set to a specific size, so my objects serve the edge.  However, when I export to PSD, it is not crop the image.

    I'm used to be able to do this in CS3 with crop marks.  But pixilated CS4 new crop mark 'effect '.

    So, how can I do now?

    Size of artboard Ilustrator CS4 on the left... and export PSD resulting

    Picture 6.PNG

    Check the box for "Use of work plans" at the bottom of the export dialog window.

  • Toshiba Canvio AeroCast Android app is not compatible with Android 5.0.2

    On my HTC One (m7) 5.0.2 android, I see the hard drive in the android, but can´t application see the content.

    I can see content in app official on my Ipad IOS 8.3 mini and old Samsung Galaxy S2 Android 4.4.2

    Will there be an update or correction, if I can use my Canvio on Android 5.0.2

    Regards Dan

    Will there be an update or correction, if I can use my Canvio on Android 5.0.2

    It seems that Android isn't fully compatible to 5.0.2 Android app release
    So let's hope that the application developer modifies the application as soon as possible.

  • Impossible to install Vista on Portege M400 - not compatible with ACPI

    Hello

    I have a toshiba portege m400.
    It has windows xp professional installed SP3 (the former owner he replaced with that of the xp tablet edition - I want to upgrade to vista so I can have the capabilities of the rear shelf!)

    In any case, I have a vista version - a version upgrade Home premium.
    When I try to install it it comes up with the error:

    +' This computer is not compliant with the Advanced Configuration and Power Interface (ACPI) standard. Windows must be installed on a computer that supports ACPI. Contact the manufacturer of your computer for an update of the BIOS, or install Windows on an ACPI compatible computer. " +

    When I try to boot from the cd it gets up to when I type in the product key, but then he tells me I have to run this from my current operating system.

    I tried to update the BIOS (it is currently 1.8 and I heard vista needs 2.0 at least). I tried to install the latest driver from the Web from Toshiba - BIOS version 3.2.8 site but it says "this computer is not supported" even if I went through the procedure of choice of type of my laptop and spec and the pilot came on his list.
    Now I'm pulling my hair out.

    Can someone help me please!
    Would be to get a full version of vista (not an upgrade version) work and boot from the cd because it seemed to go further like this?

    Thank you!

    Hi guys

    I think I know how you will be able to update the BIOS

    I read here in the forum that in very rare cases, you have the Toshiba preinstalled OS in order to update the BIOS
    So in my opinion, you will be able to update the BIOS if install you the operating system from the Toshiba recovery disc.
    After installation try to update the BIOS

    After the BIOS has been updated you could install the new Vista

    See you soon

  • Firefox Android ver 27 Samsung Galexy 3 10.1 Unable to load the Plugin for my said Foscam is not compatible with worm 27

    I have a Samsung Galaxy tablet model N° GT-P5210 (Intel chips) 4.2.2 Android running with Firefox Mozilla worm 27. When I try to access my camera of security on the net, I get my initial page indicating that I need a plug-in. The plugIn downloads but on said install: it is not compatible with Firefox 27 worm. I have no problem with laptops and PCs running windows. BUT my Tablet just will not load the plugin required to view the video transmitted from the camera Foscam F19805W

    You use the in game store?

    There is this: http://www.appszoom.com/android_appli.../ip-cam-viewer-lite_cwi.html via http://webtechnologyph.wordpress.com/.../foscam-ip-camera-frequently-asked-questions/

    I would not a plugin that is not compatible with ff27 for android on a website that a developer has implemented this notice. However in the words: page of the FF for android browser config there are items that you can enable if you have taken research taking into http://kb.mozillazine.org/Plugin-container_and_out-of-process _... for more information.

  • I have an infinity of transformer Asus Pad and Android Market says that Firefox is not compatible with my device, but your site says that it is. How to do it?

    I want to install Firefox on my Tablet Asus of Infinity transformer and market Play/Android Google says that Firefox is not compatible with my device (even if I have it running well on my phone).

    Your Web site lists compatibility with this camera twice, once as got TF700T and then as Infinity Pad transformer.

    The transformer is up-to-date with all the software, and I am running the latest version of the Google game.

    If you are having problems with the Google game to download Firefox for Android tries to download these versions: http://www.mozilla.org/en-US/firefox/channel/#firefox .

    Don't forget you must enable this settings: allows you to install app from other sources than the Google game

  • Galaxy S7 Edge is not compatible with the mixture (android)?

    I used to have a mix on my android cell.  I read on update 2.0 for Mix (android) and went to the game store.  Could not find it.  I returned to the article and there was a link, and he took me to the game store, but said "your motto is not compatible with this version."  What's the story?  Y at - it an update for android?

    Hi Mike,.

    I apologize as update 2.0 for Mix (android) is not yet compatible with the Galaxy S7 edge. The dedicated team working on getting one set for the device.

    The version currently supported for Galaxy S7 Egde is Version 1.2.512.

    Hope that helps!

    Kind regards

    Sheena

  • Compatible with Galaxy Note 3 (5 Android)

    I see that Photoshop Mix is only compatible with the mobile phone and no tables, yet I tried to install on a Note 3 with 5 Android Galaxy. I know that the series of notes is to consider phablets, but in reality is cell phones. I read somewhere that Note 4 owners could install app. So what gives, why I can't install Photoshop Mix?

    Hi ecastillo5!

    Us still working on adding additional compatibility for several Mobile Android devices, including tablets. Please stay tuned and let me know if I can help with anything else!

    See you soon

    -Kathleen

  • Why adobe illustrator drawing app on android is "not compatible" with my galaxy tab s2?

    Hello

    When I get to illustrator on Google play, it tells me that it is not compatible with my device?

    What should I do? What is the requirement?

    Hi Christophe.

    Adobe draw is not yet supported on Android tablets. The team works well on it.

    Sue.

  • Adobe capture is not compatible with the android tablets? Really?

    What version of android you have need for a galaxy tab A for adobe capture?  I have V 5.0.3.  It has been updated yesterday but Google game says Adobe capture cc is not compatible with my device?

    Here is the answer. No support yet for Android tablets:

    Android phone/tablet support

Maybe you are looking for