Skip to content

Commit

Permalink
feat: allow android plugins to have cpp code (#5758)
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug authored Oct 6, 2023
1 parent ebdfb40 commit c5f7b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/services/android-plugin-build-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class AndroidPluginBuildService implements IAndroidPluginBuildService {
};

private getAndroidSourceDirectories(source: string): Array<string> {
const directories = [RESOURCES_DIR, "java", ASSETS_DIR, "jniLibs"];
const directories = [RESOURCES_DIR, "java", ASSETS_DIR, "jniLibs", "cpp"];
const resultArr: Array<string> = [];

this.$fs.enumerateFilesInDirectorySync(source, (file, stat) => {
Expand Down

0 comments on commit c5f7b85

Please sign in to comment.