Skip to content

Commit

Permalink
Add more packages to workspace importer
Browse files Browse the repository at this point in the history
  • Loading branch information
pswaminathan authored and colinrgodsey committed Mar 24, 2023
1 parent b9aa2c6 commit 0908c61
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,12 @@ private String createAarLibrary(@NotNull TargetIdeInfo target) {
if(target.toString().equals("@maven//:androidx_core_core")) {
resourcePackage = "androidx.core";
}
if(target.toString().equals("@maven//:androidx_constraintlayout_constraintlayout")) {
resourcePackage = "androidx.constraintlayout";
}
if(target.toString().equals("@maven//:androidx_appcompat_appcompat")) {
resourcePackage = "androidx.appcompat";
}

if (!aarLibraries.containsKey(libraryKey)) {
// aar_import should only have one jar (a merged jar from the AAR's jars).
Expand Down

0 comments on commit 0908c61

Please sign in to comment.