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:
Tommaso Berlose
2017-11-07 00:01:40 +01:00
parent 170add3073
commit 0a289d82b2
31 changed files with 297 additions and 139 deletions

View File

@ -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>