Apktool/brut.apktool/apktool-lib
Jan Vidar Krey 5f0d53ba20 Support bounding targetSdkVersion between minSdkVersion and maxSdkVersion
It is possible to create a an AndroidStudio project that uses the following
nonsense settings:

    defaultConfig {
        minSdkVersion 15
        maxSdkVersion 19
        targetSdkVersion 25
    }

The application is successfully built by Android Studio, and the APK
works when installed on the relevant devices, however the app cannot
be re-built with Apktool afterwards.

This patch works around the problem by explicitly setting the
targetSdkVersion to the max of the maxSdkVersion and min of the minSdkVersion
only if these are specified.
2017-09-15 16:24:39 +02:00
..
src Support bounding targetSdkVersion between minSdkVersion and maxSdkVersion 2017-09-15 16:24:39 +02:00
build.gradle Removes SmaliDebugging 2016-02-27 20:20:53 -05:00