Fixed <intent> bug (targetPackage is package of application, not class)

This commit is contained in:
str4d
2014-03-08 20:53:05 +00:00
parent bc4f8215ef
commit e89c5ace86
2 changed files with 3 additions and 3 deletions

View File

@@ -5,12 +5,12 @@
<intent
android:action="i2p.bote.PREFS_GENERAL"
android:targetClass="i2p.bote.config.SettingsActivity"
android:targetPackage="i2p.bote.config" />
android:targetPackage="i2p.bote" />
</Preference>
<Preference android:title="@string/pref_title_change_password" >
<intent
android:targetClass="i2p.bote.config.SetPasswordActivity"
android:targetPackage="i2p.bote.config" />
android:targetPackage="i2p.bote" />
</Preference>
</PreferenceScreen>