에뮬레이터의 중요성은 컴퓨터에서 안드로이드 환경을 흉내 내고 안드로이드 폰을 구입하지 않고도 안드로이드 앱을 설치하고 실행하는 것을 매우 쉽게 만들어주는 것입니다. 누가 당신이 두 세계를 즐길 수 없다고 말합니까? 우선 아래에있는 에뮬레이터 앱을 다운로드 할 수 있습니다.
A. Nox App . OR
B. Bluestacks App .
Bluestacks는 매우 대중적이므로 개인적으로 "B"옵션을 사용하는 것이 좋습니다. 문제가 발생하면 Google 또는 Naver.com에서 좋은 해결책을 찾을 수 있습니다.
Bluestacks.exe 또는 Nox.exe를 성공적으로 다운로드 한 경우 컴퓨터의 다운로드 폴더 또는 다운로드 한 파일을 일반적으로 저장하는 곳으로 이동하십시오.
찾으면 클릭하여 응용 프로그램을 설치하십시오. PC에서 설치 프로세스를 시작해야합니다.
다음을 클릭하여 EULA 라이센스 계약에 동의하십시오.
응용 프로그램을 설치하려면 화면 지시문을 따르십시오.
위 사항을 올바르게 수행하면 소프트웨어가 성공적으로 설치됩니다.
이제 설치 한 에뮬레이터 애플리케이션을 열고 검색 창을 찾으십시오. 지금 입력하십시오. - Beak 앱을 쉽게 볼 수 있습니다. 그것을 클릭하십시오. 응용 프로그램 창이 열리고 에뮬레이터 소프트웨어에 응용 프로그램이 표시됩니다. 설치 버튼을 누르면 응용 프로그램이 다운로드되기 시작합니다. 이제 우리는 모두 끝났습니다.
그런 다음 "모든 앱"아이콘이 표시됩니다.
클릭하면 설치된 모든 응용 프로그램이 포함 된 페이지로 이동합니다.
당신은 Beak 상. 그것을 클릭하고 응용 프로그램 사용을 시작하십시오.
The small C and C++ Obfuscator Beak is a small tool that can be used to lose weight of your source code, and generate obfuscated C and C++ source code by default. It was originally developed to reduce binary size of software running in embedded systems. All user defined symbols can be replaced by very short tokens results that the compiled final binary will be smaller than its normal compiling. Features ---------------------- a. Parse all macros, global variables, constants, structure and member, class, and function definitions, and replace them with very short tokens. b. The generated source code will still be located in its original line so that comparing with the original source code file line by line become very convenient. c. All comments kept in its original position to improve the readability. d. High performance, fast parse large projects that contains hundreds of source code files. Result ---------------------- a. Smaller binary. b. Hide API call, concrete implementation, techniques used. c. Unreadable source code that can prevent source code leaked (encrypt). d. Add difficulty for reverse engineering (decompile). Support Languages ---------------------- Beak was designed as a C and C++ Obfuscator, and for the programming languages that suitable be used in embedded systems including: Ada, Lisp, Lua, Forth, Tcl, Basic, Erlang, Ruby, Rust, Python, JavaScript, Java, C#. Beak can also deal with the following common programming languages, and be used to obfuscate source code files but not for binary size reducing in most situations: Asm, Asp, AWK, CMake, COBOL, Cuda, D, DosBatch, Eiffel, Fortran, F#, Go, Html, Matlab, Objective-C, OCaml, PHP, Pascal, Perl, Perl6, PostScript, Prolog, R, Rexx, Rst, SQL, Scheme, Shell, Slang, SystemVerilog, TypeScript, VHDL, Vera, Verilog. Inside the C and C++ Obfuscator ---------------------------------- It seems very simple at the first glance of the obfuscator, but actually the inside of it is complex. When scan source code files, Beak must detect the parsed token is whether a keeping keyword (token) or not, and ignore it by query a built-in token database, the database was manually created by very time-consuming works that described as the following. Content of the built-in token database: The built-in token database of Beak includes several part of tokens generated from different sources. 1: C and C++ keywords for the language standards: e.g. auto, break, case, const, default, do, while, else ... 2: C and C++ preprocessor keywords: such as __cplusplus, DEBUG, NDEBUG, RELEASE, __MACH__, __x86_64, __PIC__, __SSE2__, __weak__attribute__, __GNUC__, __VERSION__, __INT_MAX__, _M_IX86, __INT16_MAX__, __APPLE__, __clang__, __OBJC__, __FILE__, __LINE__, __FUNCTION__, __DATE__, __TIME__, ... 3: Standard library functions, including stdlib, glib, libcxx, openmp, libunwind, STL, Boost etc: INT_MAX, INT_MIN, int32_t, stderr , atan, ceilf, atol, feof, fflush, fgetc, gets, ftell, memset, rand, qsort, strtok, vsprintf , tmpnam, wcscpy, time, tm, ... 4: Compilers' tokens. 5: System tokens used by operation system.