Current setup:
image: java:8 pipelines: default: - step: script: # Modify the commands below to build your repository. - ./gradlew build
I am getting this warning: `SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.`
It does not make sense to edit the local.properties file, because that will ruin the project on my local pc. What am I supposed to do?
I'm not very familiar with android development, but have you tried defining the environment variable mentioned in the error message? Eg. with a line like this at the beginning of your script:
- export ANDROID_HOME=...
If that doesn't work then an alternative would be to create or overwrite the local.properties file in your script. For example you could add a file "pipelines.gradle.properties" to your repo and then copy it to "local.properties" at the beginning of your script:
- cp pipelines.gradle.properties local.properties
cheers,
Steven
I managed to solve this by manually downloading the Android SDK and creating the local.properties
One last question: is it possible to keep the Android SDK on the server? It seems like a waste of bandwidth for Bitbucket having to download the full SDK every time I commit my code.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Interesting. Could you share your bitbucket-pipelines.yml?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To avoid downloading the Android SDK every time you'll need to use a docker image that already has it installed (instead of the "java:8" image). You should see if you can find a public image that someone else has already built (keeping in mind that it needs to have gradle too) or you can build one yourself that has all the tools you need.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.