Рецепт плова:

1. Обжариваем лук до золотистого цвета.
2. Добавляем морковь — жарим до мягкости.
3. Всыпаем нарезанное мясо, жарим до румяной корочки.
4. Добавляем специи: зиру, барбарис, соль.
5. Засыпаем промытый рис, сверху — головка чеснока.
6. Заливаем кипятком на 1-2 см выше риса.
7. Готовим под крышкой на слабом огне до испарения воды.
This commit is contained in:
2025-08-03 18:24:12 +03:00
parent de26fd3fc9
commit f4b497fb3f
10 changed files with 799 additions and 402 deletions

View File

@@ -6,7 +6,7 @@ plugins {
}
android {
namespace = "com.example.neomovies_mobile"
namespace = "com.neo.neomovies_mobile"
compileSdk = flutter.compileSdkVersion
ndkVersion = "27.0.12077973"
@@ -21,7 +21,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.neomovies_mobile"
applicationId = "com.neo.neomovies_mobile"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion
@@ -42,3 +42,22 @@ android {
flutter {
source = "../.."
}
dependencies {
// libtorrent4j для работы с торрентами
implementation("org.libtorrent4j:libtorrent4j:2.1.0-35")
implementation("org.libtorrent4j:libtorrent4j-android-arm64:2.1.0-35")
implementation("org.libtorrent4j:libtorrent4j-android-arm:2.1.0-35")
implementation("org.libtorrent4j:libtorrent4j-android-x86:2.1.0-35")
implementation("org.libtorrent4j:libtorrent4j-android-x86_64:2.1.0-35")
// Kotlin Coroutines
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
// Gson для JSON сериализации
implementation("com.google.code.gson:gson:2.10.1")
// AndroidX libraries
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
}