Skip to content

Commit 3f80266

Browse files
committed
chore: release build v7.0.2
Changes: - fixed lint errors - bumped the plugin version to 7.0.2 - added release details to CHANGELOG - upgraded plugin and example-app dependencies
1 parent 3fd9476 commit 3f80266

File tree

10 files changed

+189
-77
lines changed

10 files changed

+189
-77
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [v7.0.2](https://github.com/capacitor-community/camera-preview/compare/v7.0.1...v7.0.2) (2025-06-17)
4+
5+
### Fixes
6+
7+
- bug: Camera preview not full screen in Capacitor 7 when height is not specified (Android) ([#389](https://github.com/capacitor-community/camera-preview/pull/389)), ([3fd9476](https://github.com/capacitor-community/camera-preview/commit/3fd947617856290175348d5a4fc7d08589ccce76)), closes [#384](https://github.com/capacitor-community/camera-preview/issues/384)
8+
39
## [v7.0.1](https://github.com/capacitor-community/camera-preview/compare/v7.0.0...v7.0.1) (2025-04-03)
410

511
### Chores

android/src/main/java/com/ahm/capacitor/camera/preview/CameraPreview.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ public void run() {
319319

320320
// size
321321
Integer computedWidth = null;
322-
Integer computedHeight= null;
322+
Integer computedHeight = null;
323323
int computedPaddingBottom = 0;
324324

325325
if (paddingBottom != 0) {

example-app/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "ryltsov.alex.camera.preview.demo"
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 700101
11-
versionName "7.0.1"
10+
versionCode 700201
11+
versionName "7.0.2"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
aaptOptions {
1414
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

example-app/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
mavenCentral()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:8.9.1'
10+
classpath 'com.android.tools.build:gradle:8.10.1'
1111
classpath 'com.google.gms:google-services:4.4.0'
1212

1313
// NOTE: Do not place your application dependencies here; they belong

example-app/ios/App/App.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@
353353
INFOPLIST_FILE = App/Info.plist;
354354
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
355355
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
356-
MARKETING_VERSION = 7.0.1;
356+
MARKETING_VERSION = 7.0.2;
357357
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
358358
PRODUCT_BUNDLE_IDENTIFIER = ryltsov.alex.camera.preview.demo;
359359
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -374,7 +374,7 @@
374374
INFOPLIST_FILE = App/Info.plist;
375375
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
376376
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
377-
MARKETING_VERSION = 7.0.1;
377+
MARKETING_VERSION = 7.0.2;
378378
PRODUCT_BUNDLE_IDENTIFIER = ryltsov.alex.camera.preview.demo;
379379
PRODUCT_NAME = "$(TARGET_NAME)";
380380
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";

example-app/ios/App/Podfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PODS:
2-
- Capacitor (7.2.0):
2+
- Capacitor (7.3.0):
33
- CapacitorCordova
44
- CapacitorApp (7.0.1):
55
- Capacitor
6-
- CapacitorCommunityCameraPreview (7.0.1):
6+
- CapacitorCommunityCameraPreview (7.0.2):
77
- Capacitor
8-
- CapacitorCordova (7.2.0)
8+
- CapacitorCordova (7.3.0)
99
- CapacitorHaptics (7.0.1):
1010
- Capacitor
1111
- CapacitorKeyboard (7.0.1):
@@ -39,10 +39,10 @@ EXTERNAL SOURCES:
3939
:path: "../../node_modules/@capacitor/status-bar"
4040

4141
SPEC CHECKSUMS:
42-
Capacitor: 03bc7cbdde6a629a8b910a9d7d78c3cc7ed09ea7
42+
Capacitor: 8585c18a230122906e114ba5f6325ec65ee1371f
4343
CapacitorApp: febecbb9582cb353aed037e18ec765141f880fe9
44-
CapacitorCommunityCameraPreview: 7fb6323716694a159b88bba1dfe2856be389e4ff
45-
CapacitorCordova: 5967b9ba03915ef1d585469d6e31f31dc49be96f
44+
CapacitorCommunityCameraPreview: a45e3974b2f96fbc118d9cde1c8e5990fadf364f
45+
CapacitorCordova: 2685f5c43675793b5f06dfd66b3b26268f003b97
4646
CapacitorHaptics: 1f1e17041f435d8ead9ff2a34edd592c6aa6a8d6
4747
CapacitorKeyboard: 09fd91dcde4f8a37313e7f11bde553ad1ed52036
4848
CapacitorStatusBar: 6e7af040d8fc4dd655999819625cae9c2d74c36f

example-app/package-lock.json

Lines changed: 144 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)