Browse Source

Stop ignoring hidden files and directories in the `assets` directory

Fredia Huya-Kouadio 5 years ago
parent
commit
bf76d2afcf
1 changed files with 5 additions and 0 deletions
  1. 5 0
      platform/android/java/app/build.gradle

+ 5 - 0
platform/android/java/app/build.gradle

@@ -75,6 +75,11 @@ android {
     }
 
     defaultConfig {
+        // The default ignore pattern for the 'assets' directory includes hidden files and directories which are used by Godot projects.
+        aaptOptions {
+            ignoreAssetsPattern "!.svn:!.git:!.ds_store:!*.scc:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"
+        }
+
         // Feel free to modify the application id to your own.
         applicationId getExportPackageName()
         minSdkVersion versions.minSdk