0

I am not sure what is the last solution for android annotation, I implemented the latest API but still don't work errors

here is my build.gradle

 implementation 'com.android.support:support-annotations:+'
    implementation 'com.android.support:support-annotations:28.0.0'

any suggestions, I try several methods listed in stackoverflow but non of them works

Da Born
  • 11
  • 3

1 Answers1

0

According to the documentation you have to use this:

 dependencies { implementation 'com.android.support:support-annotations:24.2.0' } 

Also I've seen things such as @SuppressLint("SimpleDateFormat") used in some of my personal code if that helps

Keheira
  • 90
  • 1
  • 10