Skip to content
This repository was archived by the owner on Jan 28, 2024. It is now read-only.

Commit 7ab6a30

Browse files
committed
Change Version and Fix ISO
1 parent b684320 commit 7ab6a30

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 29
55
compileOptions.encoding = 'UTF-8'
66

77
defaultConfig {
88
applicationId "net.sourceforge.opencamera"
99
minSdkVersion 15
10-
targetSdkVersion 28
10+
targetSdkVersion 29
1111

1212
renderscriptTargetApi 21
1313
//renderscriptSupportModeEnabled true // don't use support library as it bloats the APK, and we don't need pre-4.4 support
@@ -40,5 +40,5 @@ android {
4040
dependencies {
4141
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
4242
implementation 'androidx.exifinterface:exifinterface:1.2.0'
43-
testImplementation 'junit:junit:4.12'
43+
testImplementation 'junit:junit:4.13'
4444
}

app/src/main/java/net/sourceforge/opencamera/cameracontroller/CameraController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public abstract class CameraController {
3838
public static final String ISO_DEFAULT = "auto";
3939
public static final long EXPOSURE_TIME_DEFAULT = 1000000000L/30; // note, responsibility of callers to check that this is within the valid min/max range
4040

41-
public static final int ISO_FOR_DARK = 800;
41+
public static final int ISO_FOR_DARK = 1600;
4242
public static final int N_IMAGES_NR_DARK = 16;
4343
public static final int N_IMAGES_NR_DARK_LOW_LIGHT = 32;
4444

0 commit comments

Comments
 (0)