Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Neamar committed Sep 18, 2024
1 parent 0a380e9 commit 35ad2f4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
applicationId 'fr.neamar.kiss'
minSdkVersion 15
targetSdkVersion 34
versionCode 209
versionName "3.21.1"
versionCode 210
versionName "3.21.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/java/fr/neamar/kiss/DataHandler.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package fr.neamar.kiss;

import android.annotation.SuppressLint;
import android.app.KeyguardManager;
import android.content.BroadcastReceiver;
import android.content.ComponentName;
Expand Down Expand Up @@ -84,6 +85,7 @@ public class DataHandler extends BroadcastReceiver
/**
* Initialize all providers
*/
@SuppressLint("UnspecifiedRegisterReceiverFlag")
public DataHandler(Context context) {
// Make sure we are in the context of the main application
// (otherwise we might receive an exception about broadcast listeners not being able
Expand Down
1 change: 1 addition & 0 deletions app/src/main/java/fr/neamar/kiss/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ public class MainActivity extends Activity implements QueryInterface, KeyboardSc
/**
* Called when the activity is first created.
*/
@SuppressLint("UnspecifiedRegisterReceiverFlag")
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Expand Down

0 comments on commit 35ad2f4

Please sign in to comment.