Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f657087 authored by Todd Kennedy's avatar Todd Kennedy
Browse files

Default minSdkVersion to '1'

Exception when targetSdkVersion is a letter API [eg 'N']. While this
is technically not according to the external docs, it's the behaviour
with prior platforms.

Bug: 29817839
Change-Id: I8382909dbe62de7b2ddfb7995ce11d5c2f43372e
parent 5f72b129
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1871,7 +1871,7 @@ public class PackageParser {
                    sa = res.obtainAttributes(parser,
                            com.android.internal.R.styleable.AndroidManifestUsesSdk);

                    int minVers = 0;
                    int minVers = 1;
                    String minCode = null;
                    int targetVers = 0;
                    String targetCode = null;
@@ -1898,9 +1898,6 @@ public class PackageParser {
                        } else {
                            // If it's not a string, it's an integer.
                            targetVers = val.data;
                            if (minVers == 0) {
                                minVers = targetVers;
                            }
                        }
                    }