From 1804a22e70e2f47beffe1eb1a83405d3397d1460 Mon Sep 17 00:00:00 2001 From: 2olka Date: Thu, 29 Jan 2026 19:33:28 +0500 Subject: [PATCH 01/31] =?UTF-8?q?ANDR-75:=20=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D1=8F=20for?= =?UTF-8?q?got=20password?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/gradle.xml | 3 ++ feature/forgot-password/.gitignore | 1 + feature/forgot-password/api/.gitignore | 1 + feature/forgot-password/api/build.gradle.kts | 44 +++++++++++++++++++ .../forgot-password/api/consumer-rules.pro | 0 .../forgot-password/api/proguard-rules.pro | 21 +++++++++ .../ru/yeahub/api/ExampleInstrumentedTest.kt | 24 ++++++++++ .../api/src/main/AndroidManifest.xml | 4 ++ .../java/ru/yeahub/api/ExampleUnitTest.kt | 17 +++++++ feature/forgot-password/build.gradle.kts | 44 +++++++++++++++++++ feature/forgot-password/consumer-rules.pro | 0 feature/forgot-password/impl/.gitignore | 1 + feature/forgot-password/impl/build.gradle.kts | 44 +++++++++++++++++++ .../forgot-password/impl/consumer-rules.pro | 0 .../forgot-password/impl/proguard-rules.pro | 21 +++++++++ .../ru/yeahub/impl/ExampleInstrumentedTest.kt | 24 ++++++++++ .../impl/src/main/AndroidManifest.xml | 4 ++ .../java/ru/yeahub/impl/ExampleUnitTest.kt | 17 +++++++ feature/forgot-password/proguard-rules.pro | 21 +++++++++ .../ExampleInstrumentedTest.kt | 24 ++++++++++ .../src/main/AndroidManifest.xml | 4 ++ .../yeahub/forgot_password/ExampleUnitTest.kt | 17 +++++++ settings.gradle.kts | 3 ++ 23 files changed, 339 insertions(+) create mode 100644 feature/forgot-password/.gitignore create mode 100644 feature/forgot-password/api/.gitignore create mode 100644 feature/forgot-password/api/build.gradle.kts create mode 100644 feature/forgot-password/api/consumer-rules.pro create mode 100644 feature/forgot-password/api/proguard-rules.pro create mode 100644 feature/forgot-password/api/src/androidTest/java/ru/yeahub/api/ExampleInstrumentedTest.kt create mode 100644 feature/forgot-password/api/src/main/AndroidManifest.xml create mode 100644 feature/forgot-password/api/src/test/java/ru/yeahub/api/ExampleUnitTest.kt create mode 100644 feature/forgot-password/build.gradle.kts create mode 100644 feature/forgot-password/consumer-rules.pro create mode 100644 feature/forgot-password/impl/.gitignore create mode 100644 feature/forgot-password/impl/build.gradle.kts create mode 100644 feature/forgot-password/impl/consumer-rules.pro create mode 100644 feature/forgot-password/impl/proguard-rules.pro create mode 100644 feature/forgot-password/impl/src/androidTest/java/ru/yeahub/impl/ExampleInstrumentedTest.kt create mode 100644 feature/forgot-password/impl/src/main/AndroidManifest.xml create mode 100644 feature/forgot-password/impl/src/test/java/ru/yeahub/impl/ExampleUnitTest.kt create mode 100644 feature/forgot-password/proguard-rules.pro create mode 100644 feature/forgot-password/src/androidTest/java/ru/yeahub/forgot_password/ExampleInstrumentedTest.kt create mode 100644 feature/forgot-password/src/main/AndroidManifest.xml create mode 100644 feature/forgot-password/src/test/java/ru/yeahub/forgot_password/ExampleUnitTest.kt diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 8bf84ad7..0a34d9b8 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -39,6 +39,9 @@