adding handling for application_preferences intent

This commit is contained in:
tibbi 2022-03-24 15:40:30 +01:00
parent 2f7cf12dc2
commit e0a7a82600
2 changed files with 8 additions and 2 deletions

View File

@ -62,7 +62,7 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:b3416c828f'
implementation 'com.github.SimpleMobileTools:Simple-Commons:99ed70cdbf'
implementation 'org.greenrobot:eventbus:3.3.1'
implementation 'com.klinkerapps:android-smsmms:5.2.6'
implementation 'com.github.tibbi:IndicatorFastScroll:4524cd0b61'

View File

@ -101,7 +101,13 @@
<activity
android:name=".activities.SettingsActivity"
android:label="@string/settings"
android:parentActivityName=".activities.MainActivity" />
android:parentActivityName=".activities.MainActivity">
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.simplemobiletools.commons.activities.AboutActivity"