Skip to content

Commit

Permalink
Update MainActivity.java
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownShadow200 authored Nov 28, 2024
1 parent 7ddc824 commit 92909cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion android/app/src/main/java/com/classicube/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,9 @@ void hookMotionListener(View view) {
try {
CCMotionListener listener = new CCMotionListener(this);
view.setOnGenericMotionListener(listener);
} catch {
} catch (Exception ex) {
// Unsupported on android 12
} catch (NoClassDefFoundError ex) {
// Unsupported on android 12
}
}
Expand Down

0 comments on commit 92909cb

Please sign in to comment.