python 스크립트에서 여러 AS 프로젝트 버전 번호 버전 이름 대량 수정
#!/usr/bin/env python
#coding:utf-8
'''
Created on Sep 9, 2016
@author: xwang
versionCode versionName
build.gradle androidmanifest.xml
target_versionCode target_versionName
'''
import os
import string
import sys
target_versionCode = '1004000'
target_versionName = '"1.4.0"'
plugin_arrs = ['p_classlive', 'p_collect', 'p_comp', 'p_exercise', 'p_guwen', 'p_kefu', 'p_live', 'p_message', 'p_photoselector', 'p_scanword', 'p_history', 'p_user', 'p_zxing', 'p_credit'];
base_dir = '../'
if __name__=='__main__':
####### build.gradle
print '------start to modify build.gradle in plugin folder-------'
for pluginName in plugin_arrs:
print '---current plugin----' + pluginName
os.chdir(base_dir + pluginName)
with open("build.gradle", "r") as f:
lines = f.readlines()
spaceSplitedProps = ('versionCode',
'versionName')
i = 0
for line in lines:
line = line.strip()
if (len(line) == 0):
i = i + 1
continue;
for propName in spaceSplitedProps:
if propName in line:
if (propName == 'versionCode'):
lines[i] = ' versionCode ' + target_versionCode + '
'
if (propName == 'versionName'):
lines[i] = ' versionName ' + target_versionName + '
'
i = i + 1
fl=open('build.gradle', 'w')
for ii in lines:
fl.write(ii)
fl.close()
######## AndroidManifest.xml
print '------start to modify AndroidManifest.xml in plugin folder-------'
j = 0
for pluginName in plugin_arrs:
i = 0
print '---current plugin----' + pluginName
print os.getcwd()
if j == 0:
os.chdir(base_dir + pluginName + '/src/main')
else:
os.chdir('../../../' + pluginName + '/src/main')
with open("AndroidManifest.xml", "r") as f:
lines = f.readlines()
spaceSplitedProps = ('versionCode',
'versionName')
for line in lines:
line = line.strip()
if (len(line) == 0):
i = i + 1
continue;
for propName in spaceSplitedProps:
if propName in line:
if (propName == 'versionCode'):
lines[i] = ' android:versionCode="' + target_versionCode + '"
'
if (propName == 'versionName'):
lines[i] = ' android:versionName=' + target_versionName + '>
'
i = i + 1
fl=open('AndroidManifest.xml', 'w')
for ii in lines:
fl.write(ii)
fl.close()
j = j + 1
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.