Skip to content

Commit

Permalink
fix(android): allow *.aar libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Mathews committed Feb 10, 2020
1 parent d242513 commit b24b867
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions android/titanium/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ dependencies {

// Reference all local JAR file dependencies.
implementation fileTree(dir: 'lib', include: ['*.jar', '*.aar'])
implementation fileTree(dir: "${projectDir}/../modules/ui/lib", include: ['*.jar'])
implementation fileTree(dir: "${projectDir}/../modules/xml/lib", include: ['*.jar'])
implementation fileTree(dir: "${projectDir}/../runtime/v8/lib", include: ['*.jar'])
implementation fileTree(dir: "${projectDir}/../modules/ui/lib", include: ['*.jar', '*.aar'])
implementation fileTree(dir: "${projectDir}/../modules/xml/lib", include: ['*.jar', '*.aar'])
implementation fileTree(dir: "${projectDir}/../runtime/v8/lib", include: ['*.jar', '*.aar'])
}

// This block is used when we do a "gradlew :titanium:publish", which is invoked by our "node scons package" tool.
Expand Down

0 comments on commit b24b867

Please sign in to comment.