목록package (3)
투케이2K
[환경 구성 및 요약 설명] Mobile : Android 설 명 : adb shell ps grep package / ADB 명령어 사용해 실행 중인 특정 앱 PID 프로세스 아이디 확인 [설 명] ------------------------------------------------------------------------------------------ [명령어] ------------------------------------------------------------------------------------------ 문법 : $ adb shell "ps | grep " 예시 : $ adb shell "ps | grep com.example.javaproject" -----------..
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT [소스 코드] // MARK: - [모바일 번들 ID 패키지명 확인] func getMobilePackageName() -> String { // [초기 변수 선언 실시] var appBundleIdentifier = "" if let infomation = Bundle.main.infoDictionary { if let BundleIdentifier = infomation["CFBundleIdentifier"] as? String { appBundleIdentifier = BundleIdentifier } } print("") print("===============================") print("[C_Util >..
/* =========================== */ [ 설 명 ] 1. ios 앱 스토어 앱 id 를 확인할 수 있습니다 2. aos 구글 플레이스토어 앱 패키지명을 확인할 수 있습니다 /* =========================== */ /* =========================== */ [방법 설명] 1. ios 앱 스토어 공식 사이트 접속 https://www.apple.com/app-store/ >> 찾으려는 앱 을 검색 >> id 값을 확인합니다 App Store The App Store gives people around the world a safe and trusted place to discover apps that meet our high stand..