Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的代码中,我有一些引用本地服务器的 url,当我将项目导出到 apk 时,我手动更改了这些 url,如下所示:
BASE_URL = "http://loc.server.com"; //BASE_URL = "http://prod.server.com";
我想知道我是否可以使用 Proguard(或其他方式)自动取消注释我的第二行,以确保我永远不会发送引用我本地服务器的 apk。
谢谢你的帮助
您可以使用 DEBUG 标志达到相同的效果
if (BuildConfig.DEBUG) { BASE_URL = "http://loc.server.com"; } else { BASE_URL = "http://prod.server.com"; }