We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dee6406 commit 8dcb628Copy full SHA for 8dcb628
components/mobile/luat_lib_mobile.c
@@ -454,22 +454,6 @@ static int l_mobile_enbid(lua_State* L) {
454
return 1;
455
}
456
457
-/**
458
-获取cellid
459
-@api mobile.cellid()
460
-@return int 当前cellid值,若失败返回-1
461
- */
462
-static int l_mobile_cellid(lua_State* L) {
463
- uint32_t cei;
464
- if (luat_mobile_get_service_cei(&cei) == 0) {
465
- lua_pushinteger(L, cei);
466
- }
467
- else {
468
- lua_pushinteger(L, -1);
469
470
- return 1;
471
-}
472
-
473
/**
474
进出飞行模式
475
@api mobile.flymode(index, enable)
0 commit comments