12 lines
468 B
XML
12 lines
468 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
<application>
|
|
<receiver android:name=".breezy.BreezyWeatherReceiver" android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="nodomain.freeyourgadget.gadgetbridge.ACTION_GENERIC_WEATHER" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest> |