I have App Widgets that I built for my application and I wanted to put them behind a feature toggle until they're ready to go in production. Is that possible with Widget App since they're like Services. Thanks!
Asked
Active
Viewed 123 times
0
-
1https://stackoverflow.com/q/40070380 – Mike M. Jun 30 '21 at 17:09
1 Answers
0
As @Mike M. posted a link above. Just reposting the answer here. Setting android:enabled = "false" seems to disable it.
<receiver android:name=".widget.DemoWidget"
android:enabled="false">
</receiver>

JuJu Juned
- 134
- 8