What are the criteria to compile in the minimum version of Android

1

I'm developing an app and I had to import a project from GitHub as a module, zxing, I chose to import as a module instead of importing as a dependency, because then I can edit the classes and disable Good part of the content that I will not use. I just wanted to lower the minimum required version, and I would like to know if it has a list or something that specifies what kind of feature is required in a certain version so I can see if I can remove them and lower the minimum version. >     

asked by anonymous 18.03.2017 / 00:17

1 answer

1

If you use Visual Studio:

  • Double click on Propriedades(Properties)
  • In the same section that opens that would be Aplication you will see the intended versions of the compilation
  • Select the Minimum Version you want to copy and try a Build Solution
  • If an error occurs, go to section Build located in Propriedades of step 1
  • Check the option Optmize Code and Allow Unsafe Code and try a Build Solution again
  • If you continue with an error while compiling, it will probably refer to a lack of support for the old API on such a feature

        
    20.03.2017 / 19:15