We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab88fa commit b19ac68Copy full SHA for b19ac68
lib/services/android-project-service.ts
@@ -275,11 +275,7 @@ class AndroidProjectService extends projectServiceBaseLib.PlatformProjectService
275
// Handle *.jars inside libs folder
276
let libsFolderPath = path.join(pluginPlatformsFolderPath, AndroidProjectService.LIBS_FOLDER_NAME);
277
if(this.$fs.exists(libsFolderPath).wait()) {
278
- let libsFolderContents = this.$fs.readDirectory(libsFolderPath).wait();
279
- _(libsFolderContents)
280
- .filter(libsFolderItem => path.extname(libsFolderItem) === ".jar")
281
- .each(jar => this.addLibrary(path.join(libsFolderPath, jar)).wait())
282
- .value();
+ this.addLibrary(libsFolderPath).wait();
283
}
284
285
// Handle android libraries
0 commit comments