일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- sourcetree_authencicationfailed
- unrealbuildcommand
- molocon24내용정리
- jenkins_계정삭제
- molocon24후기
- python3.12.4
- unity package_androidlib
- molocon24
- apkipa업로드저장소
- ChatGPT
- unreal_android_빌드옵션
- jenkins_sudo
- python_distutils_module_missing
- unreal_flavorselection
- unrealbuildshellscript
- unreal_contentmanagement
- xcode-select_jeknins
- xcode_targeting
- dxt
- owasp_depdendency_check_shell
- jenkins_owasp
- owasp_dependency_check
- etc2
- Unity2022
- unreal_binaryselection
- jenkins_role관리_플러그인
- sourcetree_accessdenied
- appcenter대체
- cookcontent
- asset database_androidlib
- Today
- Total
목록Android/Utility (2)
mystic-agit 개발 블로그
Android 라이브러리 프로젝트 빌드 시 산출물로 .aar 파일을 구성할 수 있고 이때 난독화 설정으로 내 코드를 변조시킬 수 있다. 반면에 난독화 설정에서 일부 코드는 외부에서 접근가능하도록 공개하여 난독이 발생하지 않게 할 수 있다. Android 프로젝트에선 build.gradle 내에서 proguard 설정을 통해 난독화를 진행할 수 있고 aar 빌드 도움이 되었던 몇 가지 옵션을 기록하였다. (1) proguardFile // build.gradle 에서 buildTypes { release { minifyEnable true proguardFile ‘proguard_rules.pro’ // 임의 정의한 파일 } } // or buildTypes { release { minifyEnable t..

aab 파일은 Android adb install 명령을 통해 바로 설치되지 않는다. aab 파일을 apk로 변경 후 설치가 필요하며 아래 과정을 통해 변경할 수 있다. (1) Google에서 제공하고 있는 bundletool 프로젝트 (혹은 .jar 파일) 다운로드 https://github.com/google/bundletool/releases Releases · google/bundletool Bundletool is a command-line tool to manipulate Android App Bundles - google/bundletool github.com 위 링크를 통해 각 버전의 bundletool.jar 파일을 바로 다운받거나, Github를 통해 프로젝트를 다운받아 빌드하여 생성하..