Added widget for quick recording starting (#22)

This commit is contained in:
Agnieszka C
2021-08-28 10:53:42 +02:00
parent 4543621768
commit a6dbd976fd
11 changed files with 283 additions and 0 deletions

View File

@@ -28,6 +28,27 @@
android:roundIcon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".activities.WidgetRecordDisplayConfigureActivity"
android:screenOrientation="portrait"
android:theme="@style/MyWidgetConfigTheme">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<receiver
android:name=".helpers.MyWidgetRecordDisplayProvider"
android:icon="@drawable/ic_microphone_vector">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_record_display" />
</receiver>
<activity
android:name=".activities.SplashActivity"
android:theme="@style/SplashTheme" />