Assigned
Status Update
Comments
al...@gmail.com <al...@gmail.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
1. Describe the bug or issue that you're seeing.
I am following the instructions here:
I have these two dependicies added to the non-app module
```
implementation("androidx.datastore:datastore:1.1.1")
implementation("androidx.datastore:datastore-preferences:1.1.1")
```
I have this pb file located at .../playlist_repository/src/main/proto/
```
syntax = "proto3";
option java_package = "io.fourth_finger.playlist_repository";
option java_multiple_files = true;
message Playlist {
sint64 hash = 1;
string name = 2;
repeated sint64 songId = 3;
}
```
I rebuild the project and there is no generated class for the pb file.
Build: AI-241.15989.150.2411.11948838, 202406101354
AS: Koala | 2024.1.1
AI-241.15989.150.2411.11948838, JRE 17.0.10+0-17.0.10b1087.21-11609105x64 JetBrains s.r.o., OS Linux(amd64) v6.8.9-100.fc38.x86_64, screens 1920.0x1080.0
Android Gradle Plugin: 8.5.0
Gradle: 8.7
Gradle JDK: JetBrains Runtime 17.0.9
NDK: from local.properties: (not specified), latest from SDK: 25.2.9519653
CMake: from local.properties: (not specified), latest from SDK: 3.22.1-g37088a8, from PATH: 3.28.1
Source: send_feedback_icon```