You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

android-versions

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

android-versions - npm Package Compare versions

Comparing version

to
1.5.0

3

index.js

@@ -60,3 +60,4 @@ /**

O_MR1: { api: 27, ndk: 8, semver: "8.1.0", name: "Oreo", },
P: { api: 28, ndk: 8, semver: "9", name: "Pie", }
P: { api: 28, ndk: 8, semver: "9", name: "Pie", },
Q: { api: 29, ndk: 8, semver: "10", name: "Android10", }
}

@@ -63,0 +64,0 @@

{
"name": "android-versions",
"version": "1.4.0",
"version": "1.5.0",
"description": "Get the name, API level, version level, NDK level, or version code from any version of Android.",

@@ -14,3 +14,3 @@ "main": "index.js",

"devDependencies": {
"jshint": "^2.9.2",
"jshint": "^2.9.6",
"tape": "^4.6.0"

@@ -17,0 +17,0 @@ },

@@ -46,3 +46,3 @@ "use strict";

}).map((version) => version.versionCode)
t.deepEqual(actual, ["M", "N", "N_MR1", "O", "O_MR1", "P"])
t.deepEqual(actual, ["M", "N", "N_MR1", "O", "O_MR1", "P", "Q"])
})

@@ -90,3 +90,3 @@

test('access specific versions directly', (t) => {
t.plan(28)
t.plan(29)
t.ok(android.BASE)

@@ -120,2 +120,3 @@ t.ok(android.BASE_1_1)

t.ok(android.P)
t.ok(android.Q)
})