英文:
Run android studio app in debug mode without ads?
问题
有没有简单的方法在调试模式下去除广告?在构建我的应用程序时,我对自己的测试广告感到烦恼 :D我正在使用IronSource广告中介。
英文:
Is there an easy way to deactivate ads in debug mode?
I'm getting annoyed from my own test ads while building my app
I am using IronSource mediation.
答案1
得分: 3
只需添加一个if
语句来检查您当前是否处于调试模式或发布模式:
if (!BuildConfig.DEBUG) {
showAds();
}
英文:
Just add an if
statement to check if you're in the debug mode or release mode :
if (!BuildConfig.DEBUG) {
showAds();
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论