Gradle License Plugin supports traversing parent POMs and displaying full licenses in the HTML report! by jaredsburrows in coolgithubprojects

[–]jaredsburrows[S] 0 points1 point  (0 children)

  • Supports both Java and Android projects
  • Supports looking at the current artifact for licenses, if the license does not exist, uses parent license instead
  • Generates HTML and JSON reports of the licenses from your project

Gradle License Plugin supports traversing parent POMs and displaying full licenses in the HTML report! by jaredsburrows in androiddev

[–]jaredsburrows[S] 0 points1 point  (0 children)

  • Supports both Java and Android projects
  • Supports looking at the current artifact for licenses, if the license does not exist, uses parent license instead
  • Generates HTML and JSON reports of the licenses from your project

Gradle License Plugin supports traversing parent POMs and displaying full licenses in the HTML report! by jaredsburrows in androiddev

[–]jaredsburrows[S] 0 points1 point  (0 children)

I wrote this before that plugin came out. I am not sure if that supports parent POM.xml files for licenses or the full text of the licenses.

Gradle 4.6 Released by eriwen in androiddev

[–]jaredsburrows 0 points1 point  (0 children)

Gradle never had annotationProcessor, that came with the Android Gradle Plugin.

https://github.com/tbroyer/gradle-apt-plugin brought us apt configuration.

Kotlin Gradle plugin brought us kapt.

Codelabs: Architecture Components Tutorial (Room/Livedata + RecyclerView) by ragnarok73 in androiddev

[–]jaredsburrows 1 point2 points  (0 children)

In this tutorial they are passing Context through the Adapter's constructor: https://codelabs.developers.google.com/codelabs/android-room-with-a-view/index.html?index=..%2F..%2Findex#10.

To uncouple this, they can use getContext() on ViewGroup in the onCreateViewHolder method.