Skip to content
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

Support for new Android studio versions #144

Open
yasanglass opened this issue Oct 7, 2018 · 1 comment · May be fixed by #149
Open

Support for new Android studio versions #144

yasanglass opened this issue Oct 7, 2018 · 1 comment · May be fixed by #149

Comments

@yasanglass
Copy link

No description provided.

@Aksx73
Copy link

Aksx73 commented Nov 20, 2018

Solve all compiling error using the followings:
1)In gradle-wrapper.properties update gradle to "4.8-all.zip"
2)In build.gradle (project) update gradle build to 3.2.1 &
in rootProject.ext{...} add SupportLibrary = "26.0.2"
i.e;

rootProject.ext {
......
SupportLibrary = "26.0.2"
}
3)In build.gradle(app) add following lines:

configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion rootProject.ext.SupportLibrary
}
}
}
}
&
update dependency of wallpaperboard library
i.e; implementation 'com.github.danimahardhika:wallpaperboard:1.7.0-b5'

check this link:#141 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants