Building Native mobile build on App center fails

0
Hello, I have completed all the steps in the https://docs.mendix.com/howto/mobile/deploying-native-app and im attempting to build the apk on app centre for the first time, when i run the build command it fails with the following out put :  > Task :app:processDebugResources FAILED   FAILURE: Build failed with an exception.   * What went wrong: Execution failed for task ':app:processDebugResources'. > Android resource linking failed /Users/runner/runners/2.163.1/work/1/s/android/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml:2: AAPT: error: attribute 'package' in <manifest> tag is not a valid Android package name: 'io.mxapps.stride-sandbox'.   * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.   * Get more help at https://help.gradle.org   BUILD FAILED Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0. Use '--warning-mode all' to show the individual deprecation warnings. See https://docs.gradle.org/5.4.1/***guide/command_line_interface.html#sec:command_line_warnings 327 actionable tasks: 309 executed, 18 up-to-date in 1m 52s Error: /Users/runner/runners/2.163.1/work/1/s/android/gradlew failed with return code: 1 at ChildProcess.<anonymous> (/Users/runner/runners/2.163.1/work/_tasks/Gradle_8d8eebd8-2b94-4c97-85af-839254cc6da4/1.128.0/node_modules/vsts-task-lib/toolrunner.js:569:30) at emitTwo (events.js:106:13) at ChildProcess.emit (events.js:191:7) at maybeClose (internal/child_process.js:886:16) at Socket.<anonymous> (internal/child_process.js:342:11) at emitOne (events.js:96:13) at Socket.emit (events.js:188:7) at Pipe._handle.close [as _onclose] (net.js:497:12) ##[error]Error: /Users/runner/runners/2.163.1/work/1/s/android/gradlew failed with return code: 1
asked
1 answers
1

The build failed because the application ID is specified had a ‘-’ in it. removed the special char and it worked :)

answered