Kevin Yi

Results 7 comments of Kevin Yi

@greenrobot @greenrobot-team No updates for three years? So many issues cannot fixed without gradle plugin source, such as kotlin compatible #395

I add this add build.gradle ``` gradle apply plugin: 'aar-link-sources' dependencies { aarLinkSources { downloadAllSources = true } } ``` But produce error when syncing: ``` Error:(113, 0) Cannot convert...

It occurs to me, too. This is the stacktrace. ``` 16:42:05.525 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 16:42:05.525 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] FAILURE: Build failed with an exception. 16:42:05.525 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 16:42:05.525 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] * What...

The `depResult.getFrom().getId().getDisplayName()` may return the root project whose displayName is `project :`. This issue will occurs if there is any dependencies by added by rootProject. The most simple reproduce is:...

This line need to be fixed: ` options.agent = new ProxyAgent(proxyOptions); options.rejectUnauthorized = false; ` A `HttpsProxyAgent` is required if the `https.request` is used. See more here: https://stackoverflow.com/a/71482233 @jschfflr

It affects all logback-android versions. [AGP enables R8 full mode by default since 8.0.0. ](https://developer.android.com/build/releases/gradle-plugin#default-changes) And the R8 full mode has [some behaviors difference](https://r8.googlesource.com/r8/+/refs/heads/master/compatibility-faq.md#r8-full-mode), and the relevant change is: >...

It can be resolved by embedding a consumer-proguard-rules to logback-android. ``` defaultConfig { ..... consumerProguardFiles ‘consumer-rules.pro’ } ``` The ‘consumer-rules.pro’ content is just as the workaround mentioned by @davidvedvick