maps icon indicating copy to clipboard operation
maps copied to clipboard

Expo Android Build Error

Open windmillcode0 opened this issue 11 months ago • 0 comments

Environment

  • Dev OS: [MacOS Sequoia 13.3]
  • @rnmapbox/maps version: [eg. 10.0.37]
  • React Native version: [eg. 0.77.1]
  • Expo version: [eg. 52.0.37]

Steps to reproduce

npx create-expo-app@latest ExpoMapboxIssue
npx expo install @rnmapbox/maps 
 npx expo run android 
eas build --profile development --platform android  --local
works

When will react native 0.77 and 0.78 be supported it ultimaitely seems like I must use these values

        buildToolsVersion = findProperty('android.buildToolsVersion') ?: '35.0.0'
        minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24')
        compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '35')
        targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34')
        kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.25'

        ndkVersion = "26.1.10909125"

especially with kotlin I cant use kotlin v2 or else the warnings from the library turn in to errors

windmillcode0 avatar Feb 25 '25 20:02 windmillcode0