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

Compile time and runtime of build.gradle #15

Open
devrnt opened this issue Sep 22, 2018 · 2 comments
Open

Compile time and runtime of build.gradle #15

devrnt opened this issue Sep 22, 2018 · 2 comments
Assignees
Labels
help wanted Extra attention is needed known issue

Comments

@devrnt
Copy link
Owner

devrnt commented Sep 22, 2018

This issue was temp fixed by:

project.configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.android.support'
                    && !details.requested.name.contains('multidex') ) {
                details.useVersion "26.0.1"
            }
        }
    }

It's a problem with a plugin who uses another version compile time 26.0.1 and runtime 28.0.1rc-2...

devrnt added a commit that referenced this issue Sep 22, 2018
Add subtitle model
Add service to fetch the subtitles crawled from the DOM
Known issue: #15
@devrnt devrnt self-assigned this May 14, 2019
@devrnt
Copy link
Owner Author

devrnt commented May 14, 2019

This code block can be removed:

project.configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.android.support'
                    && !details.requested.name.contains('multidex') ) {
                details.useVersion "26.0.1"
            }
        }
    }

@devrnt
Copy link
Owner Author

devrnt commented May 14, 2019

Note that right now the builded apk can't be installed on the emulator. Only the debug version of the app works on the emulator.

devrnt added a commit that referenced this issue May 14, 2019
@devrnt devrnt added the help wanted Extra attention is needed label May 14, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed known issue
Projects
None yet
Development

No branches or pull requests

1 participant