Error creating Android apps using Jenkins and Gradle on linux centos

I have included my build process for Android studio with Jenkins and Gradle. When I started the assembly on Jenkins and an error comes ::::::::::::::::::::::::::::::

00:04:56.154 [DEBUG] [org.gradle.configuration.project.BuildScriptProcessor] Timing: Running the build script took 1.587 secs 00:04:56.164 [INFO] [org.gradle.api.Project] Parsing the SDK, no caching allowed 00:04:56.373 [INFO] [org.gradle.api.Project] Parsing legacy package: /opt/androidsdk/android-sdk-linux/tools 00:04:56.414 [INFO] [org.gradle.api.Project] File not found while marshalling /opt/androidsdk/android-sdk-linux/tools/package.xml. Probably the SDK is read-only 00:04:56.415 [INFO] [org.gradle.api.Project] Parsing legacy package: /opt/androidsdk/android-sdk-linux/platform-tools 00:04:56.416 [INFO] [org.gradle.api.Project] File not found while marshalling /opt/androidsdk/android-sdk-linux/platform-tools/package.xml. Probably the SDK is read-only 00:04:56.416 [INFO] [org.gradle.api.Project] Parsing legacy package: /opt/androidsdk/android-sdk-linux/platforms/android-19 00:04:56.438 [INFO] [org.gradle.api.Project] File not found while marshalling /opt/androidsdk/android-sdk-linux/platforms/android-19/package.xml. Probably the SDK is read-only 00:04:56.440 [INFO] [org.gradle.api.Project] Parsing legacy package: /opt/androidsdk/android-sdk-linux/platforms/android-22 00:04:56.461 [INFO] [org.gradle.api.Project] File not found while marshalling /opt/androidsdk/android-sdk-linux/platforms/android-22/package.xml. Probably the SDK is read-only 00:04:56.463 [INFO] [org.gradle.api.Project] Parsing legacy package: /opt/androidsdk/android-sdk-linux/platforms/android-23 00:04:56.471 [INFO] [org.gradle.api.Project] File not found while marshalling /opt/androidsdk/android-sdk-linux/platforms/android-23/package.xml. Probably the SDK is read-only 00:04:56.473 [INFO] [org.gradle.api.Project] Parsing legacy package: /opt/androidsdk/android-sdk-linux/platforms/android-21 00:04:56.487 [INFO] [org.gradle.api.Project] File not found while marshalling /opt/androidsdk/android-sdk-linux/platforms/android-21/package.xml. Probably the SDK is read-only 
+6
source share
1 answer

The SDK is probably read-only.

Have you checked the permissions in the Android SDK directory to make sure it is not read-only?

0
source

All Articles