maps icon indicating copy to clipboard operation
maps copied to clipboard

[Bug]: app-armeabi-v7a-release.apk android crash

Open dontuse opened this issue 7 months ago • 0 comments

Mapbox Implementation

Mapbox

Mapbox Version

default

React Native Version

0.78.2

Platform

Android

@rnmapbox/maps version

10.1.39

Standalone component to reproduce

import React from 'react';
import {
  MapView,
  ShapeSource,
  LineLayer,
  Camera,
} from '@rnmapbox/maps';

const aLine = {
  type: 'LineString',
  coordinates: [
    [-74.00597, 40.71427],
    [-74.00697, 40.71527],
  ],
};

class BugReportExample extends React.Component {
  render() {
    return (
      <MapView style={{flex: 1}}>
        <Camera centerCoordinate={[-74.00597, 40.71427]} zoomLevel={14} />
        <ShapeSource id="idStreetLayer" shape={aLine}>
          <LineLayer id="idStreetLayer" />
        </ShapeSource>
      </MapView>
    );
  }
}

Observed behavior and steps to reproduce

relese build for arm 32 crash, arm64 work fine, minifyEnabled and proguard off not help. Build fingerprint: 'xiaomi/cactus_ru/cactus:9/PPR1.180610.011/V11.0.4.0.PCBRUXM:user/release-keys' Revision: '0' ABI: 'arm' pid: 30695, tid: 30733, name: mqt_v_js >>> {some app name} <<< signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr -------- Abort message: 'indirect_reference_table.cc:68] JNI ERROR (app bug): attempt to use stale Local 0x1 (should be 0x5)' r0 00000000 r1 0000780d r2 00000006 r3 00000008 r4 000077e7 r5 0000780d r6 8ac319d4 r7 0000010c r8 0000000b r9 8e4177b8 r10 8ac31ce4 r11 8ac31c8c ip 8ac31970 sp 8ac319c0 lr ad86bf89 pc ad863ca6

ru.mosreg.mingos.mdp.app_issue_af63b03d3def6cf9f5af2c6a6a019e63_crash_session_6847ddde03da000165ba5598c3849f9c_DNE_0_v2_stacktrace.txt

Expected behavior

No response

Notes / preliminary analysis

No response

Additional links and references

No response

dontuse avatar Jun 07 '25 12:06 dontuse