#!/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 + '\n'
if (propName == 'versionName'):
lines[i] = ' versionName ' + target_versionName + '\n'
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 + '"\n'
if (propName == 'versionName'):
lines[i] = ' android:versionName=' + target_versionName + '>\n'
i = i + 1
fl=open('AndroidManifest.xml', 'w')
for ii in lines:
fl.write(ii)
fl.close()
j = j + 1
python脚本批量修改多个AS工程版本号版本名
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 背景 公司的项目开发中,肯定是需要打包的,目前已经建立起了一套gitlab+fastlane的持续集成方案。但是在...