add handling for application_preferences intent

This commit is contained in:
tibbi 2022-03-21 22:04:30 +01:00
parent bcd63ac1ff
commit 1c132ea25e
2 changed files with 8 additions and 2 deletions

View File

@ -62,7 +62,7 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:03e4d214b1'
implementation 'com.github.SimpleMobileTools:Simple-Commons:99c8b8c007'
implementation 'me.grantland:autofittextview:0.2.1'
implementation 'net.objecthunter:exp4j:0.4.8'

View File

@ -43,7 +43,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"