-
Notifications
You must be signed in to change notification settings - Fork 51
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
Can not compile in Android #18
Comments
You can add a appcompat library as dependency in your project, I've had similar issues with conflicts between dependencies of different libraries... but I'm not completely sure what the best way is to handle this, and if it can be handled 100% automatically by the dependency system in case of conflicts etc. For now it will be an additional, manual task... I will mention it in the readme in next update! OFFTOPIC: |
I am not sure if its what I think but when I have problem with Android build I go to
and update as following android {
- compileSdkVersion 23
- buildToolsVersion "23.0.1"
+ compileSdkVersion rootProject.ext.compileSdkVersion
+ buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
...
- minSdkVersion 16
- targetSdkVersion 22
+ minSdkVersion rootProject.ext.minSdkVersion
+ targetSdkVersion rootProject.ext.targetSdkVersion
...
}
...
} This works for me and builds the android app. |
Yes @kailashvele , I also often update compile and buildtools versions of imported libraries... If I remember correct android studio offers the option to do the upgrade itself (or at least it mentions that it ignored it and applied your main project versions while building) |
@wumke , just go to your android folder and change
Please make that part of your new version that will get rid of the |
see #30 |
I installed the library in the "easy way", and double check that settings.gradle and build.gradle are ok with you suggest. Error:
A problem occurred configuring project ':app'.
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
The text was updated successfully, but these errors were encountered: