Fix android_library resources handling

RELNOTES: Fix resource handling for exported android_library rules

--
MOS_MIGRATED_REVID=109532253
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/RuleContext.java b/src/main/java/com/google/devtools/build/lib/analysis/RuleContext.java
index d95e95c..77ad117 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/RuleContext.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/RuleContext.java
@@ -561,7 +561,12 @@
     return getDerivedArtifact(getUniqueDirectory(uniqueDirectory).getRelative(relative), root);
   }
 
-  private Attribute getAttribute(String attributeName) {
+  /**
+   * Returns the Attribute associated with this name, if it's a valid attribute for this rule,
+   * or is associated with an attached aspect. Otherwise returns null.
+   */
+  @Nullable
+  public Attribute getAttribute(String attributeName) {
     Attribute result = getRule().getAttributeDefinition(attributeName);
     if (result != null) {
       return result;