到目前为止,我有以下代码从双SIM卡设备上的from ruffus import *
import argparse
import sys
parser = argparse.ArgumentParser(description='Example pipeline')
parser.add_argument('--just_print', dest='feature', action='store_true')
parser.set_defaults(feature=False)
args = parser.parse_args()
@originate("test_out.txt")
def run_testFunction(output):
with open(output,"w") as f:
f.write("it's working!\n")
if args.feature:
pipeline_printout(sys.stdout, run_testFunction, verbose = 6)
else:
pipeline_run(run_testFunction, verbose = 6)
检索信息,但它只适用于API级别24+(N +)
python script.py --just_print
(无法测试以上内容,因为我没有双SIM卡牛轧糖设备)
如何为两个SIM检索TelephonyManager
实例或至少检索信号强度和承载信息?