запуск проекта с локальными конфигами

This commit is contained in:
v228a 2025-02-18 20:22:03 +03:00
parent 28fb8285df
commit 0036564605
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@
android:fullBackupContent="@xml/backup_rules" android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:usesCleartextTraffic="true"
android:roundIcon="@mipmap/ic_launcher_round" android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/Theme.Default" android:theme="@style/Theme.Default"

View File

@ -1,5 +1,6 @@
package ru.myitschool.work.core package ru.myitschool.work.core
object Constants { object Constants {
const val SERVER_ADDRESS = "http://localhost:8090" // "http://localhost:8080"
const val SERVER_ADDRESS = "http://10.0.2.2:8080"
} }