question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

couldn't find "libruntimecore_java.so" when adding another library

See original GitHub issue

Hello 😃

First of all really thank you for creating such a great library. My issue is when I using your library with Esri Android SDK library get confused and app crash.

SO I googled it and found this question related with this issue and this question for solving issue.

So I could not affort to decide which filter that I have to use for solving issue.

Thanks for helpings

Here is my log :

08-25 10:53:57.369 31674-31674/com.example.saltun.blurviewlibdemo E/AndroidRuntime: Caused by: java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.example.saltun.blurviewlibdemo-1/base.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_dependencies_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_0_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_1_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_2_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_3_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_4_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_5_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_6_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_7_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_8_apk.apk", zip file "/data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_9_apk.apk"], nativeLibraryDirectories=[/data/app/com.example.saltun.blurviewlibdemo-1/lib/arm64, /data/app/com.example.saltun.blurviewlibdemo-1/base.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_dependencies_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_0_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_1_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_2_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_3_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_4_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_5_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_6_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_7_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_8_apk.apk!/lib/arm64-v8a, /data/app/com.example.saltun.blurviewlibdemo-1/split_lib_slice_9_apk.apk!/lib/arm64-v8a, /system/lib64, /vendor/lib64, /system/vendor/lib64, /product/lib64]]] couldn't find "libruntimecore_java.so"

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:7 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
salihyalcincommented, Aug 25, 2017

Here is my MainActivity too

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        BlurView blurView = (BlurView) findViewById(R.id.blurView);
        MapView mapView = (MapView) findViewById(R.id.mapViewxx);

        float bvRadius = 24.9f;

        final View decorView = getWindow().getDecorView();
        //Activity's root View. Can also be root View of your layout (preferably)
        final ViewGroup rootView = decorView.findViewById(android.R.id.content);
        //set background, if your root layout doesn't have one
        final Drawable windowBackground = decorView.getBackground();

        blurView.setupWith(rootView)
                .windowBackground(windowBackground)
                .blurAlgorithm(new RenderScriptBlur(this))
                .blurRadius(bvRadius);
        MapViewUtils.changeBaseMap(this, "Harita", mapView);
        MapViewUtils.mapRemoveIconAndText(mapView);
        MapViewUtils.setMapEnvelope(mapView);

    }
}

0reactions
Dimeziscommented, Jan 26, 2021

Closing since no clear actions to be taken

Read more comments on GitHub >

github_iconTop Results From Across the Web

Linux Program can't find Shared Library at run-time
This solved the issue Just add /usr/local/lib to /etc/ld.so.conf (unless it's already in there; only put it once), then run ldconfig.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found