Reputation: 1746
need assistance once again. I'm not sure how to put it across as a meaningful question, but I'll give it a shot.
I am trying to compile the APK using buildozer. This is how my folder looks like.
When I execute the command buildozer -v android debug
, the APK is created but it doesn't run. I suspect that the two folders kivymd
and navigationdrawer
were not included in the process.
Please assist !
Upvotes: 0
Views: 858
Reputation:
Buildozer includes everything in the local directory and below, if it matches the rules in the buildozer.spec
In particular the file extensions
Hope you get it.
Upvotes: 0
Reputation: 39052
I believe you can include those directories by adding to the source.include_patterns
in your .spec
file. Something like:
source.include_patterns = images/*.png
That can be comma separated list of patterns. You shouldn't need to list anything that is mentioned in an import
statement.
Upvotes: 1