From 8ea4c2e04afe17aca4777e1a159d915d85935771 Mon Sep 17 00:00:00 2001 From: Christian Lohmaier Date: Tue, 29 Aug 2023 14:36:00 +0200 Subject: enable non-transitive R classes from docs "Use non-transitive R classes to have faster builds for apps with multiple modules. Doing so helps prevent resource duplication by ensuring that each module's R class only contains references to its own resources without pulling references from its dependencies. This leads to faster builds and the corresponding benefits of compilation avoidance." while it doesn't make much of a difference for a small project like the remote, it's a good thing when the build just follows current defaults/best practices. Change-Id: Icac238046e59446eb9549dc982bae9f424de3c6f --- android/sdremote/gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/sdremote/gradle.properties b/android/sdremote/gradle.properties index bbe939b..793e623 100644 --- a/android/sdremote/gradle.properties +++ b/android/sdremote/gradle.properties @@ -1,5 +1,5 @@ android.defaults.buildfeatures.buildconfig=true android.enableJetifier=true android.nonFinalResIds=true -android.nonTransitiveRClass=false +android.nonTransitiveRClass=true android.useAndroidX=true \ No newline at end of file -- cgit v1.2.3