일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 스페인 코로나
- 이태원 클라쓰 15회 예고
- libtins
- 조희연
- 성남은혜의강교회
- 불가피
- 임영규
- 성남 코로나 확진자
- 최강욱
- 금리인하
- 김영권 아내
- 유튜버 김재석
- 은혜의 강 교회
- 폰폰테스트
- 홍혜걸
- 김영권
- 뭉쳐야 찬다
- 이상형 만들기
- 이지혜
- 픽크루
- 스콜피온킹
- 김재석
- 고민정
- 학교 개학 연기 4월
- 해킹
- 제넥신
- 양적완화
- 미국 금리인하
- 킹덤 고근희
- 리리남매
Archives
- Today
- Total
Dork's port
apktool 리패키징 오류해결 본문
error: Error: No resource found that matches the given name (at 'src' with value '@drawable/ic_arrow_back_white_24dp').
위 오류수정 코드
from os import listdir
from os.path import isfile, join
mypath = r'C:\Users\Jang\Downloads\base\res\layout'
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
for file in onlyfiles:
if file.find('xml') != -1:
print(file)
with open(mypath +'\\'+ file, encoding='utf-8') as content_file:
content = content_file.read()
content = content.replace('@drawable', '@+drawable')
f = open(mypath +'\\' + file, 'w')
f.write(content)
f.close()
반드시 원본 파일 백업해놓을 것 아래처럼 오류 날경우 백업 파일 대체
error: Error parsing XML: not well-formed (invalid token)
아래 오류는 관리자 모드로 실행할 것
S: WARNING: Could not write to (C:\Users\UserName\AppData\Local\apktool\framework), using C:\Users\UserName
\AppData\Local\Temp\ instead...
--frame-path 관련 오류시 아래와 같이 폴더 생성
C:\Users\UserName\AppData\Local\apktool\framework
나중에 정리해서 포스팅해야지
'Develop' 카테고리의 다른 글
pyqt를 이용한 QTreeWidget 이용 및 리스트 간 항목 이동 구현하기 (4) | 2019.04.13 |
---|---|
Python에서 db 연동하기(mysql, mariadb) (4) | 2019.03.28 |
Python pycrypto 설치시 구문 오류 Syntax error stdint (2) | 2019.02.18 |
음성변조 복원, 음성 변조하기 (Voice Modulation) (1) | 2018.12.21 |
Git ID, Password 저장하기 (0) | 2018.06.07 |
Comments