You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
my app used Nd4j and I have included theses dependencies in my app -
implementation('org.nd4j:nd4j-native:1.0.0-beta') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation('org.nd4j:nd4j-native:1.0.0-beta:android-arm') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation('org.nd4j:nd4j-native:1.0.0-beta:android-arm64') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation('org.nd4j:nd4j-native:1.0.0-beta:android-x86') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation('org.nd4j:nd4j-native:1.0.0-beta:android-x86_64') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation "org.bytedeco.javacpp-presets:openblas:0.3.3-1.4.3:android-arm"
implementation "org.bytedeco.javacpp-presets:openblas:0.3.3-1.4.3:android-arm64"
implementation "org.bytedeco.javacpp-presets:openblas:0.3.3-1.4.3:android-x86"
implementation "org.bytedeco.javacpp-presets:openblas:0.3.3-1.4.3:android-x86_64"
.
My issue is that when I'm trying to create an app bundle to reduce my apk size then I'm getting
the following :
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':app:packageDebugBundle'.
A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
File 'root/lib/x86_64/lib/cmake/openblas/OpenBLASConfig.cmake' uses reserved file or directory name 'lib'.
.
Can you help me understand what my issue is here and how should I fix it, as it's pretty imp for me to use the bundle
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
my app used Nd4j and I have included theses dependencies in my app -
implementation('org.nd4j:nd4j-native:1.0.0-beta') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation('org.nd4j:nd4j-native:1.0.0-beta:android-arm') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation('org.nd4j:nd4j-native:1.0.0-beta:android-arm64') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation('org.nd4j:nd4j-native:1.0.0-beta:android-x86') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation('org.nd4j:nd4j-native:1.0.0-beta:android-x86_64') {
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
implementation "org.bytedeco.javacpp-presets:openblas:0.3.3-1.4.3:android-arm"
implementation "org.bytedeco.javacpp-presets:openblas:0.3.3-1.4.3:android-arm64"
implementation "org.bytedeco.javacpp-presets:openblas:0.3.3-1.4.3:android-x86"
implementation "org.bytedeco.javacpp-presets:openblas:0.3.3-1.4.3:android-x86_64"
.
My issue is that when I'm trying to create an app bundle to reduce my apk size then I'm getting
the following :
FAILURE: Build failed with an exception.
Execution failed for task ':app:packageDebugBundle'.
The text was updated successfully, but these errors were encountered: