Sergii Trufanov
Sergii Trufanov
Any updates on this? How can I skip adding `` in the manifest? @vmosconecds Maybe you found another solution?
Hi @phathv try to add these lines in your `gradle.properties` file and rebuild your project. ``` android.enableJetifier=true android.useAndroidX=true ```
Hi @phathv, you are right ViroCore uses old dependency: `implementation 'com.android.support:appcompat-v7:28.0.0'` but that's why we should include: ``` android.enableJetifier=true android.useAndroidX=true ``` to make it work. From Jetifier docs: `A standalone...
Hi @phathv I'm also using Kotlin in my project. Maybe you will be able to share your project then I will try to reproduce your issue and help.
Hi @phathv You can try [this](https://github.com/manikantagarikipati/ARPlacingObjectsKt) project, it's just sample migrated to Kotlin. Just update ARCore and ViroCore dependencies and try to build it. If you will have problems even...
Hi @phathv I was very busy last few weeks. Do you still need my help?
Hi @phathv I've sent project to [[email protected]](mailto:[email protected])
@inveders Done.
Hi @hannesa2 Unfortunately I can't make it public due to lack of time. You can do it yourself: [How to build ViroCore](https://github.com/viromedia/virocore#building-the-virocore-platform) [How to update ARCore version](https://github.com/viromedia/virocore/blob/master/android/libs/arcore/README.txt)
@ebelinski No, it's just a naming issue, you can fix your problem with custom packaging options in your build gradle ``` packagingOptions { pickFirst 'lib/armeabi-v7a/libarcore_sdk_c.so' pickFirst 'lib/arm64-v8a/libarcore_sdk_c.so' pickFirst 'lib/x86_64/libarcore_sdk_c.so' }...