1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-14 11:00:10 +01:00

official Android default minSdkVersion is 1 not 0

https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#min
This commit is contained in:
Hans-Christoph Steiner 2016-06-06 20:17:41 +02:00
parent 1feccf9eb8
commit 032dbc3e8d

View File

@ -547,7 +547,7 @@ def scan_apks(apps, apkcache, repodir, knownapks, use_date_from_apk=False):
if 'minSdkVersion' not in apk:
logging.warn("No SDK version information found in {0}".format(apkfile))
apk['minSdkVersion'] = 0
apk['minSdkVersion'] = 1
# Check for debuggable apks...
if common.isApkDebuggable(apkfile, config):