2 Star 1 Fork 0

虹图AI开放平台/HTEffect_Agora_Android

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ci.env.py 492 Bytes
一键复制 编辑 原始数据 按行查看 历史
deer 提交于 2023-05-18 14:31 . 初始化仓
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import re
import os
def main():
appId = ""
if "AGORA_APP_ID" in os.environ:
appId = os.environ["AGORA_APP_ID"]
token = ""
f = open("./app/src/main/res/values/string_configs.xml", 'r+')
content = f.read()
contentNew = re.sub(r'YOUR APP ID', appId, content)
contentNew = re.sub(r'YOUR ACCESS TOKEN', token, contentNew)
f.seek(0)
f.write(contentNew)
f.truncate()
if __name__ == "__main__":
main()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/htai-open/hteffect_agora_android.git
[email protected]:htai-open/hteffect_agora_android.git
htai-open
hteffect_agora_android
HTEffect_Agora_Android
master

搜索帮助