Skip to content

Commit

Permalink
Fix NoClassDefFoundError exceptions for TermuxActivity
Browse files Browse the repository at this point in the history
This commit fixes the non-crashing exception `Rejecting re-init on previously-failed class java.lang.Class<androidx.core.view.ViewCompat$2>: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/view/View$OnUnhandledKeyEventListener;` on termux startup due to `setContentView()` call by `TermuxActivity.onCreate()`. The recommended solution seems to be to add `androidx.core:core` dependency, which has solved the issue.

https://issuetracker.google.com/issues/117685087
  • Loading branch information
agnostic-apollo committed Feb 27, 2021
1 parent 5a96075 commit 9fd2cf9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ android {
implementation "androidx.annotation:annotation:1.1.0"
implementation "androidx.viewpager:viewpager:1.0.0"
implementation "androidx.drawerlayout:drawerlayout:1.1.1"
implementation 'androidx.core:core:1.5.0-beta02'
implementation project(":terminal-view")
}

Expand Down

0 comments on commit 9fd2cf9

Please sign in to comment.