# Install python version if you need.
# pyenv install 3.11
pyenv local 3.11poetry config virtualenvs.prefer-active-python true| import 'package:flutter/material.dart'; | |
| void main() => runApp(const HomePage()); | |
| const red = Colors.red; | |
| const green = Colors.green; | |
| const blue = Colors.blue; | |
| const big = TextStyle(fontSize: 30); | |
| ////////////////////////////////////////////////// |
| import subprocess | |
| import re | |
| import datetime | |
| from pprint import pprint | |
| def get_sms_list(): | |
| # 읽지않은 메시지만 출력 | |
| unread_sms = ['adb', 'shell', 'content', 'query', '--uri', 'content://sms/inbox', '--projection', 'person:read:date:address:link_url:subject:body', '--where', 'read=0', '--sort', 'date'] | |
| # 모든 메시지 출력 |