From edc2925812c3838e4ba211dbf30b03c0878bf86f Mon Sep 17 00:00:00 2001 From: Benoit Marty <benoit@matrix.org> Date: Mon, 27 Sep 2021 15:03:46 +0200 Subject: [PATCH] Add comment to avoid mistake --- matrix-sdk-android/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/matrix-sdk-android/build.gradle b/matrix-sdk-android/build.gradle index 2226c7ee..68447804 100644 --- a/matrix-sdk-android/build.gradle +++ b/matrix-sdk-android/build.gradle @@ -3,6 +3,7 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-kapt' apply plugin: 'kotlin-parcelize' apply plugin: 'realm-android' +// WARNING: always restore this line after importing code from Element Android (1/2) apply plugin: "com.vanniktech.maven.publish" buildscript { @@ -32,6 +33,7 @@ android { // that the app's state is completely cleared between tests. testInstrumentationRunnerArguments clearPackageData: 'true' + // WARNING: always restore this line after importing code from Element Android (2/2) buildConfigField "String", "SDK_VERSION", "\"${project.getProperties().getOrDefault("VERSION_NAME", "0.0.0")}\"" buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\"" -- GitLab