In Progress
Status Update
Comments
zh...@google.com <zh...@google.com> #2
My dependencies:
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'com.google.android.gms:play-services-wearable:17.1.0'
implementation 'com.google.android.material:material:1.4.0'
If I remove androidx.appcompat:appcompat:1.4.0
, the warning vanishes, so I imagine there's some transitive dependency on an older version of androidx.appcompat:appcompat
that doesn't have the warning.
Description
DataStore Component used: Proto Datastore DataStore Version used: 1.1.1 Devices/Android versions reproduced on: 35
The current Store typed objects with Proto DataStore example suggests the following package name:
which is counter to protobuf best practices suggestion that implementers Don’t Generate Java Protos in the Same Java Package as Other Code .
Given that guidance something like
would be more appropriate and save someone following the guide a bit of time debugging a nonissue.