Skip to content

Commit

Permalink
gitignore: Ignore CMake directory generated on Android build
Browse files Browse the repository at this point in the history
Starting with our last Flutter update 273674f (zulip#1184), a directory
android/app/.cxx/ gets created whenever building or running the app
for Android.  It has a lot of generated files in it.

See chat discussion:
  https://chat.zulip.org/#narrow/channel/516-mobile-dev-help/topic/Error.20in.20running.20the.20app/near/2017805
  https://chat.zulip.org/#narrow/channel/516-mobile-dev-help/topic/.2Ecxx.2F.20files.20created/near/2017819

There's an upstream issue for the need to add a gitignore line for
these in the `flutter create` templates:
  flutter/flutter#160372

Even when that's done, it won't affect existing apps like ours; we
need to make a similar update in our own tree.  That's this commit.
  • Loading branch information
gnprice authored and chrisbobbe committed Dec 27, 2024
1 parent 2336485 commit 3ff7096
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ gradle-wrapper.jar
/local.properties
GeneratedPluginRegistrant.java

.cxx/

*keystore.properties
*.keystore
*.keystore.pgp
Expand Down

0 comments on commit 3ff7096

Please sign in to comment.