File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
build/project-template-gradle Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ def configurationsDir = "configurations"
37
37
def createPluginConfigFile = false
38
38
def configStage = " \n :config phase: "
39
39
def nodeModulesDir = " ../../node_modules/"
40
+ def libDir = " ../../lib/Android/"
40
41
def pluginNames = new ArrayList<String > ()
41
42
def configDir = file(configurationsDir)
42
43
def appResExists = false
@@ -163,6 +164,9 @@ dependencies {
163
164
164
165
// take all jars within the node_modules dir
165
166
compile fileTree(dir : nodeModulesDir, include : [" **/*.jar" ])
167
+
168
+ // take all jars within the lib/Android dir
169
+ compile fileTree(dir : libDir, include : [" **/*.jar" ])
166
170
167
171
// when gradle has aar support this will be preferred instead of addAarDependencies
168
172
// compile files("$rootDir/libs/aar") {
You can’t perform that action at this time.
0 commit comments