-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<data> | ||
<!-- 产品名称 --> | ||
<product name="app_name"><!-- name属性值为string.xml内的app名称 --> | ||
<item name="产品1"/> | ||
<item name="产品2"/> | ||
</product> | ||
|
||
<!-- 渠道配置 --> | ||
<channel name="channel_name"><!-- name属性值为AndroidManifest.xml meta-data的渠道key名称 --> | ||
<!-- mark是渠道标记, name是渠道名称 --> | ||
<item mark="Google" name="Google Play"/> | ||
<item mark="360" name="360"/> | ||
<item mark="myApp" name="应用宝"/> | ||
</channel> | ||
|
||
<!-- 打包人员 --> | ||
<person name="person_name"><!-- name属性值为AndroidManifest.xml meta-data的打包人员key名称 --> | ||
<!-- mark是人员标记, name是打包人名字 --> | ||
<item mark="Sanders" name="Sanders"/> | ||
</person> | ||
|
||
<!-- 修改AndroidManifest.xml配置 --> | ||
<manifest> | ||
<!-- 修改 meta_data 标签 --> | ||
<!--<meta_data name="meta_data" value="meta_data"/>--> | ||
</manifest> | ||
|
||
<!-- 修改res下的资源文件 --> | ||
<resource> | ||
<!-- 修改strings.xml内容 --> | ||
<strings> | ||
<!--<string name="string" value="string" />--> | ||
</strings> | ||
|
||
<!-- 修改bools.xml内容 --> | ||
<bools> | ||
<!--<bool name="bool" value="bool" />--> | ||
</bools> | ||
</resource> | ||
</data> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
KEY_STORE_FILE_PATH=keystore.keystore | ||
KEY_STORE_ALIAS=keystore.alias | ||
KEY_STORE_PASSWORD=keystore.password | ||
SIGNER_TSA=false |