Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App Center can't locate android project if it's not at root level

I've setup a few app center android projects but they usually have the android project at the same level as the git root.

Now I have another project that is one level deeper than the git root. In this case app center says "We couldn’t find any Android projects in your branch."

Is there a setting where I could point app center towards the android project directory? I know I can shuffle the project around but I would rather not.

like image 920
noev Avatar asked Apr 15 '20 11:04

noev


1 Answers

In my case problem was solved by removing some Gradle scripts from .gitirnore:

/gradlew
/gradlew.bat
gradle-wrapper.jar

These files should be in your repository if you want App Center to find your project.

like image 118
Mol0ko Avatar answered Oct 07 '22 08:10

Mol0ko