@capacitor/device 8.0.0-dev-2431-20251106T155052.0 → 8.0.0-dev-2432-20251106T185011.0
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.
- package/android/build.gradle +3 -3
- package/package.json +3 -4
package/android/build.gradle
CHANGED
|
@@ -11,7 +11,7 @@ buildscript {
|
|
|
11
11
|
google()
|
|
12
12
|
mavenCentral()
|
|
13
13
|
maven {
|
|
14
|
-
url
|
|
14
|
+
url "https://plugins.gradle.org/m2/"
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
dependencies {
|
|
@@ -30,7 +30,7 @@ if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
android {
|
|
33
|
-
namespace
|
|
33
|
+
namespace "com.capacitorjs.plugins.device"
|
|
34
34
|
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36
|
|
35
35
|
defaultConfig {
|
|
36
36
|
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 24
|
|
@@ -46,7 +46,7 @@ android {
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
lintOptions {
|
|
49
|
-
abortOnError
|
|
49
|
+
abortOnError false
|
|
50
50
|
}
|
|
51
51
|
compileOptions {
|
|
52
52
|
sourceCompatibility JavaVersion.VERSION_21
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/device",
|
|
3
|
-
"version": "8.0.0-dev-
|
|
3
|
+
"version": "8.0.0-dev-2432-20251106T185011.0",
|
|
4
4
|
"description": "The Device API exposes internal information about the device, such as the model and operating system version, along with user information such as unique ids.",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"native"
|
|
31
31
|
],
|
|
32
32
|
"scripts": {
|
|
33
|
-
"test": "uvu -r
|
|
33
|
+
"test": "uvu -r tsm src/__tests__",
|
|
34
34
|
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
|
|
35
35
|
"verify:ios": "xcodebuild build -scheme CapacitorDevice -destination generic/platform=iOS",
|
|
36
36
|
"verify:android": "cd android && ./gradlew clean build test && cd ..",
|
|
@@ -56,13 +56,12 @@
|
|
|
56
56
|
"@ionic/prettier-config": "~1.0.1",
|
|
57
57
|
"@ionic/swiftlint-config": "^1.1.2",
|
|
58
58
|
"eslint": "^8.57.0",
|
|
59
|
-
"esm": "^3.2.25",
|
|
60
59
|
"prettier": "~2.3.0",
|
|
61
60
|
"prettier-plugin-java": "~1.0.2",
|
|
62
61
|
"rimraf": "^6.0.1",
|
|
63
62
|
"rollup": "^4.26.0",
|
|
64
63
|
"swiftlint": "^1.0.1",
|
|
65
|
-
"
|
|
64
|
+
"tsm": "^2.3.0",
|
|
66
65
|
"typescript": "~4.1.5",
|
|
67
66
|
"uvu": "^0.5.1"
|
|
68
67
|
},
|