Crash at startup
See original GitHub issuegradle file
apply plugin: 'com.neenbedankt.android-apt'
...
compile 'com.android.support:appcompat-v7:25.0.1'
...
apt 'com.google.dagger:dagger-compiler:2.8'
compile 'com.google.dagger:dagger:2.8'
...
compile 'com.arello-mobile:moxy:1.4.5'
provided 'com.arello-mobile:moxy-compiler:1.4.5'
compile 'com.arello-mobile:moxy-android:1.4.5'
compile 'com.arello-mobile:moxy-app-compat:1.4.5'
crash
java.lang.NoClassDefFoundError: Failed resolution of: Lcom/arellomobile/mvp/MoxyReflector;
at com.arellomobile.mvp.MvpProcessor.getMvpPresenters(MvpProcessor.java:82)
at com.arellomobile.mvp.MvpDelegate.onCreate(MvpDelegate.java:101)
at com.arellomobile.mvp.MvpAppCompatFragment.onCreate(MvpAppCompatFragment.java:23)
at some.package.BaseFragment.onCreate(BaseFragment.java:26)
Issue Analytics
- State:
- Created 7 years ago
- Comments:15
Top Results From Across the Web
Solved: Windows 10 Crashes on Startup
Part 2. How to Fix Windows 10 Crashed on Startup? · Method 1. Cleaning Dust · Method 2. Stop Fast Startup · Method...
Read more >How to Fix Windows 10 Crashing Randomly or at Startup
How to Fix Windows 10 Crashing Randomly or at Startup · Troubleshooting · Method 1: Cleaning Dust · Method 2: Checking and Replacing...
Read more >NET applications crash at startup - .NET Framework
Symptoms. A user starts a .NET application. However, the application crashes at startup if the user.config file is corrupt. The application ...
Read more >Firefox keeps crashing at startup | Firefox Help - Mozilla Support
Firefox keeps crashing at startup. A crash is what happens when Firefox closes or quits unexpectedly and the Mozilla Crash Reporter appears.
Read more >How to fix Premiere Pro crash issues - Adobe Support
Suggested troubleshooting tips. Launch Premiere Pro but no splash screen appears? Check if any instance of the app is ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ve got the same problem if I using Kotlin in project.
For fix it use
kapt 'com.arello-mobile:moxy-compiler:1.4.5'
So, problem was because we have module :core And I add dependencies to this module
So I added
to app module, and the problem was solved 😃