From 2e38639910427ab16e8196a0e83a59fa6f040843 Mon Sep 17 00:00:00 2001 From: davidoskky Date: Wed, 6 Oct 2021 13:23:52 +0200 Subject: [PATCH] Missing test variables configuration (#348) * Add buildconfig variables for debug testing * Allow marking articles as read from the article reader (#346) * Add new items according to the selfoss id, to avoid duplicate items. * Migrate setting articles as read from ArticleFragment to SharedItems * Removed unused assertion * Allow marking articles as read from the article reader * Added contributors, because they deserve it ! Co-authored-by: Amine Bou <510304+aminecmi@users.noreply.github.com> --- app/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index e3615c2..db02e99 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -73,6 +73,9 @@ android { 'proguard-rules.pro' } debug { + buildConfigField "String", "LOGIN_URL", appLoginUrl + buildConfigField "String", "LOGIN_PASSWORD", appLoginPassword + buildConfigField "String", "LOGIN_USERNAME", appLoginUsername } } flavorDimensions "build"