【发布时间】:2021-07-22 15:58:36
【问题描述】:
我在 react native 中创建了一个应用程序。在 Android 版本 11 上它不起作用。我试图登录,但它给出了一个错误,并且使用相同的 id 和密码,它可以在 android 版本 10 或更低版本上运行。
buildToolsVersion = "29.0.0"
minSdkVersion = 16
compileSdkVersion = 29
targetSdkVersion = 29
supportLibVersion = "29.0.0"
我应该将targetsdkversion更新到30吗?
日志猫
2021-06-04 12:57:12.798 4375-10265/com.xxxI/ReactNativeJS: 'parameters :-', { id: 'LOGIN_ID',
api:
{ body:
{ _parts:
[ [ 'command', 'login' ],
[ 'username', 'xxxxxxxxxxxxxx.com ' ],
[ 'password', 'xxxxxxx' ] ] } } }
2021-06-04 12:57:12.834 4375-4375/com.xxx D/InputMethodManager: HSIFW - flag : 0
2021-06-04 12:57:41.165 4375-10218/com.xxx I/com.xxx: NativeAlloc concurrent copying GC freed 541077(17MB) AllocSpace objects, 16(320KB) LOS objects, 49% free, 7125KB/13MB, paused 213us total 115.644ms
2021-06-04 12:57:41.214 4375-10220/com.xxx W/System: A resource failed to call release.
2021-06-04 12:58:12.828 4375-10265/com.xxx I/ReactNativeJS: 'In catch...error :-', { [Error: timeout] line: 557, column: 376, sourceURL: 'index.android.bundle' }
也得到
E/Netd: getNetworkForDns: getNetId from enterpriseCtrl is netid 0
更新:该应用终于在 android 11 上运行
android/build.gradle
buildToolsVersion = "30.0.0"
minSdkVersion = 16
compileSdkVersion = 30
targetSdkVersion = 30
supportLibVersion = "30.0.0"
android/app/build.gradle
minifyEnabled true
androdi/app/src/debug/AndroidManifest.xml
tools:targetApi="30"
【问题讨论】:
标签: android react-native android-studio