Skip to content

Commit fdd52a3

Browse files
committed
add handling for Application_preferences intent
1 parent ef10ce0 commit fdd52a3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ android {
6363
}
6464

6565
dependencies {
66-
implementation 'com.github.SimpleMobileTools:Simple-Commons:4ef63f88a3'
66+
implementation 'com.github.SimpleMobileTools:Simple-Commons:99ed70cdbf'
6767
implementation 'com.googlecode.ez-vcard:ez-vcard:0.11.3'
6868
implementation 'com.github.tibbi:IndicatorFastScroll:4524cd0b61'
6969
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'

app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,13 @@
6060
<activity
6161
android:name=".activities.SettingsActivity"
6262
android:label="@string/settings"
63-
android:parentActivityName=".activities.MainActivity"/>
63+
android:parentActivityName=".activities.MainActivity">
64+
65+
<intent-filter>
66+
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
67+
<category android:name="android.intent.category.DEFAULT" />
68+
</intent-filter>
69+
</activity>
6470

6571
<activity
6672
android:name=".activities.GroupContactsActivity"

0 commit comments

Comments
 (0)