-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android oreo Action bar Activity not found #49
Comments
@raaviswami how todo |
@njzy63lys what do you mean ? |
@raaviswami do you find a solution? |
@njzy63lys yes for now i am doing some hack in code , Create a package "android.support.v7.app" inside your app source code, Then |
@raaviswami THX. but i post have a question。could you help me 。 you have a QQ? |
package android.support.v7.app; /** @deprecated */ And create a package in your project with this name , android.support.v7.app |
@raaviswami nb mogul |
Hello Team,
Recently i have updated my application to support android oreo , And we have changed support version to 26 and compile sdk version to 26.
At runtime we land up with issue from HermsEventBus , i.e ActionBarActivity def not found in TypeUtills.java
private static final HashSet<Class> CONTEXT_CLASSES = new HashSet>() {
{
add(Context.class);
add(ActionBarActivity.class);
add(Activity.class);
add(AppCompatActivity.class);
add(Application.class);
add(FragmentActivity.class);
add(IntentService.class);
add(Service.class);
}
};
Please let us know how to solve this problem , it seems they have removed ActionBarActivity from support libraries ,Previously it was deprecated.
Regards,
Anil Raavi.
The text was updated successfully, but these errors were encountered: