Couldn't generate Android App Bundle version of my AppSolution to build dynamic forms with AndroidHow to add MountSpec component in LayoutSpec or XML in android
Numerically Stable IIR filter
How char is processed in math mode?
What are the cons of stateless password generators?
May a hotel provide accommodation for fewer people than booked?
What is a Mono Word™?
"Fewer errors means better products" or fewer errors mean better products."
Applying for mortgage when living together but only one will be on the mortgage
Scam? Checks via Email
How does Asimov's second law deal with contradictory orders from different people?
What is the full text of the song about the failed battle of Kiska?
How to structure presentation to avoid getting questions that will be answered later in the presentation?
Can I shorten this filter, that finds disk sizes over 100G?
How can flights operated by the same company have such different prices when marketed by another?
What does 「ちんちんかいかい」 mean?
Why does Latex make a small adjustment when I change section color
Is it possible to tell if a child will turn into a Hag?
How can I convert a linear narrative into a branching narrative?
How to prevent a single-element caster from being useless against immune foes?
How would a lunar colony attack Earth?
Patio gate not at right angle to the house
In the Schrödinger equation, can I have a Hamiltonian without a kinetic term?
What parameters are to be considered when choosing a MOSFET?
How do I make my photos have more impact?
Planting Trees in Outer Space
Couldn't generate Android App Bundle version of my App
Solution to build dynamic forms with AndroidHow to add MountSpec component in LayoutSpec or XML in android
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Is anyone else facing this problem?
I can generate Debug and Release versions of my App in Bundle Package. No gradle erros during the Assemble.
Dependencies:
// Litho
implementation 'com.facebook.litho:litho-core:0.19.0'
implementation 'com.facebook.litho:litho-widget:0.19.0'
compileOnly 'com.facebook.litho:litho-annotations:0.19.0'
annotationProcessor 'com.facebook.litho:litho-processor:0.19.0'
// Sections
implementation 'com.facebook.litho:litho-sections-core:0.19.0'
implementation 'com.facebook.litho:litho-sections-widget:0.19.0'
compileOnly 'com.facebook.litho:litho-sections-annotations:0.19.0'
annotationProcessor 'com.facebook.litho:litho-sections-processor:0.19.0'
// SoLoader
implementation 'com.facebook.soloader:soloader:0.5.1'
But when I run it on the Android Device, app crashes and logcat shows it:
2019-03-22 12:59:40.128 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /data/app/br.com.hinorede.app-aqB3syBNAjQg9cbzWpXDQg==/lib/arm64
2019-03-22 12:59:40.129 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /system/vendor/lib
2019-03-22 12:59:40.129 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /system/lib
2019-03-22 12:59:40.131 18103-18103/br.com.hinorede.app E/SoLoader: couldn't find DSO to load: libyoga.so
2019-03-22 12:59:40.131 18103-18103/br.com.hinorede.app D/AndroidRuntime: Shutting down VM
2019-03-22 12:59:40.137 18103-18103/br.com.hinorede.app E/AndroidRuntime: FATAL EXCEPTION: main
Process: br.com.hinorede.app, PID: 18103
java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libyoga.so
at com.facebook.soloader.SoLoader.doLoadLibraryBySoName(SoLoader.java:703)
at com.facebook.soloader.SoLoader.loadLibraryBySoName(SoLoader.java:564)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:500)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:455)
If I run the app using the traditional method (Apk File) it works fine. But when I run from the bundle it crashes.
Anyone?
Thanks.
litho facebook-litho
add a comment |
Is anyone else facing this problem?
I can generate Debug and Release versions of my App in Bundle Package. No gradle erros during the Assemble.
Dependencies:
// Litho
implementation 'com.facebook.litho:litho-core:0.19.0'
implementation 'com.facebook.litho:litho-widget:0.19.0'
compileOnly 'com.facebook.litho:litho-annotations:0.19.0'
annotationProcessor 'com.facebook.litho:litho-processor:0.19.0'
// Sections
implementation 'com.facebook.litho:litho-sections-core:0.19.0'
implementation 'com.facebook.litho:litho-sections-widget:0.19.0'
compileOnly 'com.facebook.litho:litho-sections-annotations:0.19.0'
annotationProcessor 'com.facebook.litho:litho-sections-processor:0.19.0'
// SoLoader
implementation 'com.facebook.soloader:soloader:0.5.1'
But when I run it on the Android Device, app crashes and logcat shows it:
2019-03-22 12:59:40.128 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /data/app/br.com.hinorede.app-aqB3syBNAjQg9cbzWpXDQg==/lib/arm64
2019-03-22 12:59:40.129 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /system/vendor/lib
2019-03-22 12:59:40.129 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /system/lib
2019-03-22 12:59:40.131 18103-18103/br.com.hinorede.app E/SoLoader: couldn't find DSO to load: libyoga.so
2019-03-22 12:59:40.131 18103-18103/br.com.hinorede.app D/AndroidRuntime: Shutting down VM
2019-03-22 12:59:40.137 18103-18103/br.com.hinorede.app E/AndroidRuntime: FATAL EXCEPTION: main
Process: br.com.hinorede.app, PID: 18103
java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libyoga.so
at com.facebook.soloader.SoLoader.doLoadLibraryBySoName(SoLoader.java:703)
at com.facebook.soloader.SoLoader.loadLibraryBySoName(SoLoader.java:564)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:500)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:455)
If I run the app using the traditional method (Apk File) it works fine. But when I run from the bundle it crashes.
Anyone?
Thanks.
litho facebook-litho
Can you provide a demo project where this can be tested?
– colriot
Apr 11 at 20:07
Thanks for your reply. I zipped a demo project this link: mega.nz/#!Fpd1gAqA!5uuEEqoCx3Wbec8amYqJV84rkx6EBZD8b4uXV1kHHTI To reproduce the crash, you need to: 1 - In Android Studio 3.3.2 go to "Run" > "Edit Configurations" 2 - In general tab > "Deploy:" choose "APK from app bundle" hit "OK" 3 - Run (^R)
– Sergio Sena
Apr 13 at 1:43
add a comment |
Is anyone else facing this problem?
I can generate Debug and Release versions of my App in Bundle Package. No gradle erros during the Assemble.
Dependencies:
// Litho
implementation 'com.facebook.litho:litho-core:0.19.0'
implementation 'com.facebook.litho:litho-widget:0.19.0'
compileOnly 'com.facebook.litho:litho-annotations:0.19.0'
annotationProcessor 'com.facebook.litho:litho-processor:0.19.0'
// Sections
implementation 'com.facebook.litho:litho-sections-core:0.19.0'
implementation 'com.facebook.litho:litho-sections-widget:0.19.0'
compileOnly 'com.facebook.litho:litho-sections-annotations:0.19.0'
annotationProcessor 'com.facebook.litho:litho-sections-processor:0.19.0'
// SoLoader
implementation 'com.facebook.soloader:soloader:0.5.1'
But when I run it on the Android Device, app crashes and logcat shows it:
2019-03-22 12:59:40.128 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /data/app/br.com.hinorede.app-aqB3syBNAjQg9cbzWpXDQg==/lib/arm64
2019-03-22 12:59:40.129 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /system/vendor/lib
2019-03-22 12:59:40.129 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /system/lib
2019-03-22 12:59:40.131 18103-18103/br.com.hinorede.app E/SoLoader: couldn't find DSO to load: libyoga.so
2019-03-22 12:59:40.131 18103-18103/br.com.hinorede.app D/AndroidRuntime: Shutting down VM
2019-03-22 12:59:40.137 18103-18103/br.com.hinorede.app E/AndroidRuntime: FATAL EXCEPTION: main
Process: br.com.hinorede.app, PID: 18103
java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libyoga.so
at com.facebook.soloader.SoLoader.doLoadLibraryBySoName(SoLoader.java:703)
at com.facebook.soloader.SoLoader.loadLibraryBySoName(SoLoader.java:564)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:500)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:455)
If I run the app using the traditional method (Apk File) it works fine. But when I run from the bundle it crashes.
Anyone?
Thanks.
litho facebook-litho
Is anyone else facing this problem?
I can generate Debug and Release versions of my App in Bundle Package. No gradle erros during the Assemble.
Dependencies:
// Litho
implementation 'com.facebook.litho:litho-core:0.19.0'
implementation 'com.facebook.litho:litho-widget:0.19.0'
compileOnly 'com.facebook.litho:litho-annotations:0.19.0'
annotationProcessor 'com.facebook.litho:litho-processor:0.19.0'
// Sections
implementation 'com.facebook.litho:litho-sections-core:0.19.0'
implementation 'com.facebook.litho:litho-sections-widget:0.19.0'
compileOnly 'com.facebook.litho:litho-sections-annotations:0.19.0'
annotationProcessor 'com.facebook.litho:litho-sections-processor:0.19.0'
// SoLoader
implementation 'com.facebook.soloader:soloader:0.5.1'
But when I run it on the Android Device, app crashes and logcat shows it:
2019-03-22 12:59:40.128 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /data/app/br.com.hinorede.app-aqB3syBNAjQg9cbzWpXDQg==/lib/arm64
2019-03-22 12:59:40.129 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /system/vendor/lib
2019-03-22 12:59:40.129 18103-18103/br.com.hinorede.app D/SoLoader: libyoga.so not found on /system/lib
2019-03-22 12:59:40.131 18103-18103/br.com.hinorede.app E/SoLoader: couldn't find DSO to load: libyoga.so
2019-03-22 12:59:40.131 18103-18103/br.com.hinorede.app D/AndroidRuntime: Shutting down VM
2019-03-22 12:59:40.137 18103-18103/br.com.hinorede.app E/AndroidRuntime: FATAL EXCEPTION: main
Process: br.com.hinorede.app, PID: 18103
java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libyoga.so
at com.facebook.soloader.SoLoader.doLoadLibraryBySoName(SoLoader.java:703)
at com.facebook.soloader.SoLoader.loadLibraryBySoName(SoLoader.java:564)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:500)
at com.facebook.soloader.SoLoader.loadLibrary(SoLoader.java:455)
If I run the app using the traditional method (Apk File) it works fine. But when I run from the bundle it crashes.
Anyone?
Thanks.
litho facebook-litho
litho facebook-litho
asked Mar 26 at 21:57
Sergio SenaSergio Sena
213 bronze badges
213 bronze badges
Can you provide a demo project where this can be tested?
– colriot
Apr 11 at 20:07
Thanks for your reply. I zipped a demo project this link: mega.nz/#!Fpd1gAqA!5uuEEqoCx3Wbec8amYqJV84rkx6EBZD8b4uXV1kHHTI To reproduce the crash, you need to: 1 - In Android Studio 3.3.2 go to "Run" > "Edit Configurations" 2 - In general tab > "Deploy:" choose "APK from app bundle" hit "OK" 3 - Run (^R)
– Sergio Sena
Apr 13 at 1:43
add a comment |
Can you provide a demo project where this can be tested?
– colriot
Apr 11 at 20:07
Thanks for your reply. I zipped a demo project this link: mega.nz/#!Fpd1gAqA!5uuEEqoCx3Wbec8amYqJV84rkx6EBZD8b4uXV1kHHTI To reproduce the crash, you need to: 1 - In Android Studio 3.3.2 go to "Run" > "Edit Configurations" 2 - In general tab > "Deploy:" choose "APK from app bundle" hit "OK" 3 - Run (^R)
– Sergio Sena
Apr 13 at 1:43
Can you provide a demo project where this can be tested?
– colriot
Apr 11 at 20:07
Can you provide a demo project where this can be tested?
– colriot
Apr 11 at 20:07
Thanks for your reply. I zipped a demo project this link: mega.nz/#!Fpd1gAqA!5uuEEqoCx3Wbec8amYqJV84rkx6EBZD8b4uXV1kHHTI To reproduce the crash, you need to: 1 - In Android Studio 3.3.2 go to "Run" > "Edit Configurations" 2 - In general tab > "Deploy:" choose "APK from app bundle" hit "OK" 3 - Run (^R)
– Sergio Sena
Apr 13 at 1:43
Thanks for your reply. I zipped a demo project this link: mega.nz/#!Fpd1gAqA!5uuEEqoCx3Wbec8amYqJV84rkx6EBZD8b4uXV1kHHTI To reproduce the crash, you need to: 1 - In Android Studio 3.3.2 go to "Run" > "Edit Configurations" 2 - In general tab > "Deploy:" choose "APK from app bundle" hit "OK" 3 - Run (^R)
– Sergio Sena
Apr 13 at 1:43
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55366777%2fcouldnt-generate-android-app-bundle-version-of-my-app%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55366777%2fcouldnt-generate-android-app-bundle-version-of-my-app%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you provide a demo project where this can be tested?
– colriot
Apr 11 at 20:07
Thanks for your reply. I zipped a demo project this link: mega.nz/#!Fpd1gAqA!5uuEEqoCx3Wbec8amYqJV84rkx6EBZD8b4uXV1kHHTI To reproduce the crash, you need to: 1 - In Android Studio 3.3.2 go to "Run" > "Edit Configurations" 2 - In general tab > "Deploy:" choose "APK from app bundle" hit "OK" 3 - Run (^R)
– Sergio Sena
Apr 13 at 1:43