Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [v7.0.2](https://github.com/capacitor-community/camera-preview/compare/v7.0.1...v7.0.2) (2025-06-17)

### Fixes

- 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)

## [v7.0.1](https://github.com/capacitor-community/camera-preview/compare/v7.0.0...v7.0.1) (2025-04-03)

### Chores
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public void run() {

// size
Integer computedWidth = null;
Integer computedHeight= null;
Integer computedHeight = null;
int computedPaddingBottom = 0;

if (paddingBottom != 0) {
Expand Down
4 changes: 2 additions & 2 deletions example-app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "ryltsov.alex.camera.preview.demo"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 700101
versionName "7.0.1"
versionCode 700201
versionName "7.0.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
2 changes: 1 addition & 1 deletion example-app/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.9.1'
classpath 'com.android.tools.build:gradle:8.10.1'
classpath 'com.google.gms:google-services:4.4.0'

// NOTE: Do not place your application dependencies here; they belong
Expand Down
4 changes: 2 additions & 2 deletions example-app/ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 7.0.1;
MARKETING_VERSION = 7.0.2;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = ryltsov.alex.camera.preview.demo;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -374,7 +374,7 @@
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 7.0.1;
MARKETING_VERSION = 7.0.2;
PRODUCT_BUNDLE_IDENTIFIER = ryltsov.alex.camera.preview.demo;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
Expand Down
12 changes: 6 additions & 6 deletions example-app/ios/App/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
PODS:
- Capacitor (7.2.0):
- Capacitor (7.3.0):
- CapacitorCordova
- CapacitorApp (7.0.1):
- Capacitor
- CapacitorCommunityCameraPreview (7.0.1):
- CapacitorCommunityCameraPreview (7.0.2):
- Capacitor
- CapacitorCordova (7.2.0)
- CapacitorCordova (7.3.0)
- CapacitorHaptics (7.0.1):
- Capacitor
- CapacitorKeyboard (7.0.1):
Expand Down Expand Up @@ -39,10 +39,10 @@ EXTERNAL SOURCES:
:path: "../../node_modules/@capacitor/status-bar"

SPEC CHECKSUMS:
Capacitor: 03bc7cbdde6a629a8b910a9d7d78c3cc7ed09ea7
Capacitor: 8585c18a230122906e114ba5f6325ec65ee1371f
CapacitorApp: febecbb9582cb353aed037e18ec765141f880fe9
CapacitorCommunityCameraPreview: 7fb6323716694a159b88bba1dfe2856be389e4ff
CapacitorCordova: 5967b9ba03915ef1d585469d6e31f31dc49be96f
CapacitorCommunityCameraPreview: a45e3974b2f96fbc118d9cde1c8e5990fadf364f
CapacitorCordova: 2685f5c43675793b5f06dfd66b3b26268f003b97
CapacitorHaptics: 1f1e17041f435d8ead9ff2a34edd592c6aa6a8d6
CapacitorKeyboard: 09fd91dcde4f8a37313e7f11bde553ad1ed52036
CapacitorStatusBar: 6e7af040d8fc4dd655999819625cae9c2d74c36f
Expand Down
182 changes: 144 additions & 38 deletions example-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading