@capacitor/camera 8.0.0-dev-2431-20251107T165729.0 → 8.0.0-dev-2435-20251107T175920.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/README.md +2 -2
- package/android/build.gradle +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -68,8 +68,8 @@ Additionally, because the Camera API launches a separate Activity to handle taki
|
|
|
68
68
|
|
|
69
69
|
This plugin will use the following project variables (defined in your app's `variables.gradle` file):
|
|
70
70
|
|
|
71
|
-
- `androidxExifInterfaceVersion`: version of `androidx.exifinterface:exifinterface` (default: `1.
|
|
72
|
-
- `androidxMaterialVersion`: version of `com.google.android.material:material` (default: `1.
|
|
71
|
+
- `androidxExifInterfaceVersion`: version of `androidx.exifinterface:exifinterface` (default: `1.4.1`)
|
|
72
|
+
- `androidxMaterialVersion`: version of `com.google.android.material:material` (default: `1.13.0`)
|
|
73
73
|
|
|
74
74
|
## PWA Notes
|
|
75
75
|
|
package/android/build.gradle
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
ext {
|
|
2
2
|
capacitorVersion = System.getenv('CAPACITOR_VERSION')
|
|
3
3
|
junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
|
|
4
|
-
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.
|
|
5
|
-
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.
|
|
6
|
-
androidxExifInterfaceVersion = project.hasProperty('androidxExifInterfaceVersion') ? rootProject.ext.androidxExifInterfaceVersion : '1.
|
|
7
|
-
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.
|
|
8
|
-
androidxMaterialVersion = project.hasProperty('androidxMaterialVersion') ? rootProject.ext.androidxMaterialVersion : '1.
|
|
4
|
+
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.1'
|
|
5
|
+
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.7.0'
|
|
6
|
+
androidxExifInterfaceVersion = project.hasProperty('androidxExifInterfaceVersion') ? rootProject.ext.androidxExifInterfaceVersion : '1.4.1'
|
|
7
|
+
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.3.0'
|
|
8
|
+
androidxMaterialVersion = project.hasProperty('androidxMaterialVersion') ? rootProject.ext.androidxMaterialVersion : '1.13.0'
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
buildscript {
|
|
@@ -13,11 +13,11 @@ buildscript {
|
|
|
13
13
|
google()
|
|
14
14
|
mavenCentral()
|
|
15
15
|
maven {
|
|
16
|
-
url
|
|
16
|
+
url "https://plugins.gradle.org/m2/"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
dependencies {
|
|
20
|
-
classpath 'com.android.tools.build:gradle:8.
|
|
20
|
+
classpath 'com.android.tools.build:gradle:8.13.0'
|
|
21
21
|
if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") {
|
|
22
22
|
classpath 'io.github.gradle-nexus:publish-plugin:1.3.0'
|
|
23
23
|
}
|
|
@@ -32,8 +32,8 @@ if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
android {
|
|
35
|
-
namespace
|
|
36
|
-
compileSdk
|
|
35
|
+
namespace "com.capacitorjs.plugins.camera"
|
|
36
|
+
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36
|
|
37
37
|
defaultConfig {
|
|
38
38
|
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 24
|
|
39
39
|
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 36
|
|
@@ -48,7 +48,7 @@ android {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
lintOptions {
|
|
51
|
-
abortOnError
|
|
51
|
+
abortOnError false
|
|
52
52
|
}
|
|
53
53
|
compileOptions {
|
|
54
54
|
sourceCompatibility JavaVersion.VERSION_21
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/camera",
|
|
3
|
-
"version": "8.0.0-dev-
|
|
3
|
+
"version": "8.0.0-dev-2435-20251107T175920.0",
|
|
4
4
|
"description": "The Camera API provides the ability to take a photo with the camera or choose an existing one from the photo album.",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|