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.
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.
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:
GRADLE_USER_HOME
environment variable, which if not set defaults to USER_HOME/.gradle
)