Skip to content

Commit 9273f4d

Browse files
committed
use linting for target SDK 30
Signed-off-by: Balint Erdosi <[email protected]>
1 parent b02405f commit 9273f4d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ android {
77
release {
88
}
99
}
10-
compileSdkVersion 29
10+
compileSdkVersion 30
1111
buildToolsVersion '29.0.2'
1212
defaultConfig {
1313
applicationId "eu.berdosi.app.heartbeat"
1414
minSdkVersion 21
1515
targetSdkVersion 30
16-
versionCode 1
17-
versionName "1.0"
16+
versionCode 2
17+
versionName "1.1"
1818
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1919
}
2020
buildTypes {

app/src/main/java/eu/berdosi/app/heartbeat/CameraService.java

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ public void onConfigureFailed(@NonNull CameraCaptureSession session) {
8080
};
8181

8282
try {
83+
// deprecated in API 30, but changing it would bump minSdkVersion to 28.
84+
//noinspection deprecation
8385
camera.createCaptureSession(Collections.singletonList(previewSurface), stateCallback, null); //1
8486
} catch (CameraAccessException e) {
8587
if (e.getMessage() != null) {

app/src/main/java/eu/berdosi/app/heartbeat/MainActivity.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import androidx.core.app.ActivityCompat;
1414

1515
import android.os.Handler;
16+
import android.os.Looper;
1617
import android.os.Message;
1718
import android.util.Log;
1819
import android.view.Menu;
@@ -43,7 +44,7 @@ public class MainActivity extends Activity implements ActivityCompat.OnRequestPe
4344
private boolean justShared = false;
4445

4546
@SuppressLint("HandlerLeak")
46-
private final Handler mainHandler = new Handler() {
47+
private final Handler mainHandler = new Handler(Looper.getMainLooper()) {
4748
@Override
4849
public void handleMessage(@NonNull Message msg) {
4950
super.handleMessage(msg);

0 commit comments

Comments
 (0)