Configuration 'compile' in project ':app' is deprecated. Use 'implementation' instead.
Configuration 'provided' in project ':app' is deprecated. Use 'compileOnly' instead.
Configuration 'testCompile' in project ':app' is deprecated. Use 'testImplementation' instead.
Configuration 'debugCompile' in project ':app' is deprecated. Use 'debugImplementation' instead.
Configuration 'androidTestCompile' in project ':app' is deprecated. Use 'androidTestImplementation' instead.
File /home/mobileci/.android/repositories.cfg could not be loaded.
Checking the license for package Android SDK Build-Tools 26.0.2 in /usr/local/android-sdk/licenses
Warning: License for package Android SDK Build-Tools 26.0.2 not accepted.
Checking the license for package Android SDK Platform 25 in /usr/local/android-sdk/licenses
Warning: License for package Android SDK Platform 25 not accepted.
FAILURE: Build failed with an exception.
*
What went wrong:A problem occurred configuring project ':app'.
> You have not accepted the license agreements of the following SDK components:
[Android SDK Build-Tools 26.0.2, Android SDK Platform 25].
Before building your project, you need to accept the license agreements and complete the
installation of the missing components using the Android Studio SDK Manager.
Alternatively, to learn how to transfer the license agreements from one workstation to another,
go to http://d.android.com/r/studio-ui/export-licenses.html*
Try:Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.*
Get more help at https://help.gradle.orgBUILD FAILED in 31s
I hope you have been able to sort this out by now but for the knowledge of others I would like to post this update.
Following lines are a part the of my pipelines.yml file
# Download packages.
- yes | sdkmanager "platform-tools"
- yes | sdkmanager "platforms;android-28"
- yes | sdkmanager "build-tools;28.0.3"
- yes | sdkmanager "extras;android;m2repository"
- yes | sdkmanager "extras;google;m2repository"
- yes | sdkmanager "extras;google;instantapps"
- yes | sdkmanager --licenses
We need to download the above packages and accept all licenses to do an automated build on the server.
can i see your full pipeline setup to know where to add this?
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.