0

How do I get rid of this warning in Android Studio Gradle project:

The option setting 'android.keepTimestampsInApk=true' is experimental and unsupported.

String 'keepTimestampsInApk' is nowhere to be found.

qwlice
  • 556
  • 7
  • 23

1 Answers1

0

As SkorpEN said in the comments, android.keepTimestampsInApk can be found in the file gradle.properties.

According to this answer by Stanislav, there are two possible locations for the gradle.properties file:

  1. project build dir
  2. gradle user home (defined by the GRADLE_USER_HOME environment variable, which if not set defaults to USER_HOME/.gradle)
qwlice
  • 556
  • 7
  • 23