Answers for "aapt: error: resource android:attr/lstar not found. react naive"

0

AAPT: error: resource android:attr/lStar not found.

ext {
    buildToolsVersion = "29.0.2"
    minSdkVersion = 21
    compileSdkVersion = 29
    targetSdkVersion = 29
    googlePlayServicesAuthVersion = "16.0.1"
    androidXCore = "1.6.0"    //Add this line
}
Posted by: Guest on September-06-2021
0

react-native resource android:attr/lStar not found in Android

Step-1 : See by running "npm update" to rectify issue due to breaking changes pushed by some package in project dependency
For Example, in my case the issue fixed by updating below package,
npm update @react-native-community/netinfo

Step-2 :
change Sdk Versions in android/build.gradle file to minimum required:
compileSdkVersion = 31
targetSdkVersion = 31

Step-3 : 
add the below line in android/build.gradle file under 
androidXCore = "1.6.0"
Posted by: Guest on November-19-2021

Code answers related to "aapt: error: resource android:attr/lstar not found. react naive"

Browse Popular Code Answers by Language