Stop ignoring hidden files and directories in the `assets` directory
This commit is contained in:
parent
2709ddb163
commit
bf76d2afcf
|
@ -75,6 +75,11 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
defaultConfig {
|
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.
|
// Feel free to modify the application id to your own.
|
||||||
applicationId getExportPackageName()
|
applicationId getExportPackageName()
|
||||||
minSdkVersion versions.minSdk
|
minSdkVersion versions.minSdk
|
||||||
|
|
Loading…
Reference in New Issue