pipeline { agent { docker { image 'mingc/android-build-box' } } stages { stage('Gradle Build') { steps { sh 'gradle clean build' } } } }