使用场景
- 公司项目和我的项目的
AndroidManifest.xml
混在一起,我需要区分开来编译观察app运行
1.在app/src/main/ 下写多个AndroidManifest.xml
- AndroidManifest.own.xml
- AndroidManifest.com.xml
2.编写powershell脚本
- 第一对脚本
com-build.ps1
和reset-com-manifest.ps1
# com-build.ps1 这行可以删掉
Move-Item -Path .\app\src\main\AndroidManifest.com.xml -Destination .\app\src\main\AndroidManifest.xml
Write-Warning "NEXT TIME SWITCH BUILD, do run first: reset-com-manifest.ps1"
# reset-com-manifest.ps1 这行可以删掉
Move-Item -Path .\app\src\main\AndroidManifest.xml -Destination .\app\src\main\AndroidManifest.com.xml
3. 运行步骤
- com-build.ps1
- 然后在AndroidStudio里面点击按钮编译
- reset-com-manifest.ps1
4. 当然你也需要自己项目的编译own-build.ps1和reset-own-manifest.ps1
- 这里你自己设置
预览