Fix events order, fix horizontal resize, add widget preview toggle, fix next event function, fix weather icon click listner and relase v1.3-beta1
This commit is contained in:
@ -12,6 +12,7 @@
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:name=".ui.AWApplication"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme">
|
||||
@ -113,7 +114,7 @@
|
||||
<receiver
|
||||
android:name=".receiver.OpenWeatherIntentReceiver"
|
||||
android:enabled="true"
|
||||
android:exported="true">
|
||||
android:exported="false">
|
||||
<intent-filter>
|
||||
<action android:name="com.tommasoberlose.anotherwidget.action.ACTION_OPEN_WEATHER_INTENT" />
|
||||
</intent-filter>
|
||||
@ -121,10 +122,12 @@
|
||||
|
||||
<service
|
||||
android:name=".util.CrocodileService"
|
||||
android:enabled="true"
|
||||
android:exported="true" />
|
||||
android:enabled="true"/>
|
||||
|
||||
<activity android:name=".ui.activity.SupportDevActivity"></activity>
|
||||
<activity android:name=".ui.activity.SupportDevActivity"
|
||||
android:configChanges="keyboardHidden|orientation|screenSize"
|
||||
android:launchMode="singleInstance"
|
||||
android:screenOrientation="portrait" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
Reference in New Issue
Block a user