0

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!

JuJu Juned
  • 134
  • 8

1 Answers1

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