Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

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 subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants