startActivity from DraggerActitiy is not working
rkmax opened this issue · 1 comments
rkmax commented
My app have 3 Activities
- Main : android.support.v7.app.AppCompatActivity
- Second : DraggerActivity
- Third : android.support.v7.app.AppCompatActivity
When I call
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
startActivity(intent);
second is correctly lunched by when I call
Intent intent = new Intent(SecondActivity,this, ThirdActivity.class);
startActivity(intent);
it doesn't work. any thoughts?
rkmax commented
nevermind. it's not related to DraggerActivity