Skip to content

Commit b6e37c9

Browse files
committed
Merge changes for v1.14-r4, updating manifest for 1.15-r1 release
2 parents 0fca416 + 6899564 commit b6e37c9

4 files changed

Lines changed: 38 additions & 34 deletions

File tree

src/Kp2aBusinessLogic/database/edit/AddTemplateEntries.cs

Lines changed: 34 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -175,30 +175,40 @@ public AddTemplateEntries(IKp2aApp app, OnOperationFinishedHandler operationFini
175175
}
176176
}
177177
},
178-
new TemplateEntry()
179-
{
180-
Title = UiStringKey.TemplateTitle_EMail,
181-
Icon = PwIcon.EMail,
182-
Uuid = new PwUuid(MemUtil.HexStringToByteArray("0B84EC3029E330478CD99B670942295B")),
183-
Fields = new List<TemplateEntry.ITemplateField>()
184-
{
185-
new TemplateEntry.CustomField()
186-
{
187-
FieldName = UiStringKey.TemplateField_EMail_EMail,
188-
Type = TemplateEntry.FieldType.Inline
189-
},
190-
new TemplateEntry.StandardField()
191-
{
192-
FieldName = PwDefs.UrlField
193-
},
194-
new TemplateEntry.StandardField()
195-
{
196-
FieldName = PwDefs.PasswordField
197-
}
198-
199-
}
200-
},
201-
new TemplateEntry()
178+
/*
179+
On 2025-11-25, Google refused to accept app updates because it claims the app collects e-mail addresses
180+
but does not declare so in the data security declaration.
181+
I sent an appeal but that was no accepted. There are now two bad choices:
182+
1.) Declare that we are collecting PII
183+
(which is visible to everybody on the Play page and leads to a bunch of follow up questions which are all non-sense,
184+
e.g. can the user have this info deleted)
185+
2.) or remove the e-mail template, because the screenshot they sent as "proof" showed creating a new entry there.
186+
Let's go with 2.
187+
new TemplateEntry()
188+
{
189+
Title = UiStringKey.TemplateTitle_EMail,
190+
Icon = PwIcon.EMail,
191+
Uuid = new PwUuid(MemUtil.HexStringToByteArray("0B84EC3029E330478CD99B670942295B")),
192+
Fields = new List<TemplateEntry.ITemplateField>()
193+
{
194+
new TemplateEntry.CustomField()
195+
{
196+
FieldName = UiStringKey.TemplateField_EMail_EMail,
197+
Type = TemplateEntry.FieldType.Inline
198+
},
199+
new TemplateEntry.StandardField()
200+
{
201+
FieldName = PwDefs.UrlField
202+
},
203+
new TemplateEntry.StandardField()
204+
{
205+
FieldName = PwDefs.PasswordField
206+
}
207+
208+
}
209+
},
210+
*/
211+
new TemplateEntry()
202212
{
203213
Title = UiStringKey.TemplateTitle_WLan,
204214
Icon = PwIcon.IRCommunication,

src/keepass2android-app/Manifests/AndroidManifest_net.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
along with Keepass2Android. If not, see <http://www.gnu.org/licenses/>.
1717
-->
1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19-
android:versionCode="245"
20-
android:versionName="1.15-r0"
19+
android:versionCode="247"
20+
android:versionName="1.15-r1"
2121
package="keepass2android.keepass2android"
2222
xmlns:tools="http://schemas.android.com/tools"
2323
android:installLocation="auto">

src/keepass2android-app/Manifests/AndroidManifest_nonet.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
along with Keepass2Android. If not, see <http://www.gnu.org/licenses/>.
1717
-->
1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19-
android:versionCode="245"
20-
android:versionName="1.15-r0"
19+
android:versionCode="247"
20+
android:versionName="1.15-r1"
2121
package="keepass2android.keepass2android_nonet"
2222
xmlns:tools="http://schemas.android.com/tools"
2323
android:installLocation="auto">

src/keepass2android-app/Resources/xml/preferences.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,6 @@ Keepassdroid, Copyright Brian Pellin.
3838
android:title="@string/application"
3939
android:summary="@string/application_settings" />
4040

41-
42-
<Preference android:key="plugin_key" android:title="@string/plugins" app:iconSpaceReserved="false">
43-
44-
<intent android:action="kp2a.action.PluginListActivity" />
45-
</Preference>
46-
4741
<Preference
4842
app:iconSpaceReserved="false"
4943
android:key="@string/about_prefs_key"

0 commit comments

Comments
 (0)