commit 1235b7cbd3d63b3410dc5dc0dba39e93e001c5b7 Author: nm17 Date: Sat Jun 3 14:52:18 2023 +0400 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5bd175f --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties +.idea diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts new file mode 100644 index 0000000..e4d3e61 --- /dev/null +++ b/app/build.gradle.kts @@ -0,0 +1,121 @@ + +@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed +plugins { + alias(libs.plugins.androidApplication) + alias(libs.plugins.kotlinAndroid) +} + +android { + namespace = "ru.nm17.narodmon" + compileSdk = 33 + + defaultConfig { + applicationId = "ru.nm17.narodmon" + minSdk = 29 + targetSdk = 33 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + vectorDrawables { + useSupportLibrary = true + } + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = "1.8" + } + buildFeatures { + compose = true + } + composeOptions { + kotlinCompilerExtensionVersion = "1.4.3" + } + packaging { + resources { + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } + } +} + +dependencies { + + implementation(libs.core.ktx) + implementation(libs.lifecycle.runtime.ktx) + implementation(libs.activity.compose) + implementation(platform(libs.compose.bom)) + implementation(libs.ui) + implementation(libs.ui.graphics) + implementation(libs.ui.tooling.preview) + implementation(libs.material3) + implementation(libs.androidx.datastore.core.android) + implementation(libs.androidx.room.common) + testImplementation(libs.junit) + androidTestImplementation(libs.androidx.test.ext.junit) + androidTestImplementation(libs.espresso.core) + androidTestImplementation(platform(libs.compose.bom)) + androidTestImplementation(libs.ui.test.junit4) + debugImplementation(libs.ui.tooling) + debugImplementation(libs.ui.test.manifest) + + val nav_version = "2.5.3" + + // Java language implementation + implementation("androidx.navigation:navigation-fragment:$nav_version") + implementation("androidx.navigation:navigation-ui:$nav_version") + + // Kotlin + implementation("androidx.navigation:navigation-fragment-ktx:$nav_version") + implementation("androidx.navigation:navigation-ui-ktx:$nav_version") + + // Feature module Support + implementation("androidx.navigation:navigation-dynamic-features-fragment:$nav_version") + + // Testing Navigation + androidTestImplementation("androidx.navigation:navigation-testing:$nav_version") + + // Jetpack Compose Integration + implementation("androidx.navigation:navigation-compose:$nav_version") + + val room_version = "2.5.1" + + implementation("androidx.room:room-runtime:$room_version") + annotationProcessor("androidx.room:room-compiler:$room_version") + + // To use Kotlin annotation processing tool (kapt) + //kapt("androidx.room:room-compiler:$room_version") + // To use Kotlin Symbol Processing (KSP) + //ksp("androidx.room:room-compiler:$room_version") + + // optional - Kotlin Extensions and Coroutines support for Room + implementation("androidx.room:room-ktx:$room_version") + + // optional - RxJava2 support for Room + implementation("androidx.room:room-rxjava2:$room_version") + + // optional - RxJava3 support for Room + implementation("androidx.room:room-rxjava3:$room_version") + + // optional - Guava support for Room, including Optional and ListenableFuture + implementation("androidx.room:room-guava:$room_version") + + // optional - Test helpers + testImplementation("androidx.room:room-testing:$room_version") + + // optional - Paging 3 Integration + implementation("androidx.room:room-paging:$room_version") + + + + +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/ru/nm17/narodmon/ExampleInstrumentedTest.kt b/app/src/androidTest/java/ru/nm17/narodmon/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..0c3da70 --- /dev/null +++ b/app/src/androidTest/java/ru/nm17/narodmon/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package ru.nm17.narodmon + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("ru.nm17.narodmon", appContext.packageName) + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..5f5c06a --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/ru/nm17/narodmon/MainActivity.kt b/app/src/main/java/ru/nm17/narodmon/MainActivity.kt new file mode 100644 index 0000000..acd614e --- /dev/null +++ b/app/src/main/java/ru/nm17/narodmon/MainActivity.kt @@ -0,0 +1,159 @@ +@file:OptIn(ExperimentalMaterial3Api::class, ExperimentalMaterial3Api::class, + ExperimentalMaterial3Api::class +) + +package ru.nm17.narodmon + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.padding +import androidx.compose.material.icons.Icons +import androidx.compose.material.icons.filled.Add +import androidx.compose.material.icons.filled.Menu +import androidx.compose.material3.Divider +import androidx.compose.material3.DrawerValue +import androidx.compose.material3.ExperimentalMaterial3Api +import androidx.compose.material3.FabPosition +import androidx.compose.material3.FloatingActionButton +import androidx.compose.material3.Icon +import androidx.compose.material3.IconButton +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.ModalDrawerSheet +import androidx.compose.material3.ModalNavigationDrawer +import androidx.compose.material3.NavigationDrawerItem +import androidx.compose.material3.Scaffold +import androidx.compose.material3.Text +import androidx.compose.material3.TopAppBar +import androidx.compose.material3.TopAppBarDefaults +import androidx.compose.material3.rememberDrawerState +import androidx.compose.runtime.Composable +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.unit.dp +import androidx.navigation.compose.NavHost +import androidx.navigation.compose.composable +import androidx.navigation.compose.rememberNavController +import androidx.room.Room +import kotlinx.coroutines.launch +import ru.nm17.narodmon.db.AppDatabase +import ru.nm17.narodmon.ui.theme.NarodMonTheme + +class MainActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + + val db = Room.databaseBuilder( + applicationContext, + AppDatabase::class.java, "database-name" + ).build() + + + setContent { + val navController = rememberNavController() + //var asd = getPreferences() + + NarodMonTheme { + NavHost(navController = navController, startDestination = "agreement") { + composable("agreement") { } + composable("friendslist") { } + /*...*/ + } + + // A surface container using the 'background' color from the theme + + + Scaf({ Text("Content", modifier = Modifier.padding(it)) }) + + } + } + } +} + +@Composable +fun Greeting(name: String, modifier: Modifier = Modifier) { + Text( + text = "Hello $name!", + modifier = modifier + ) +} + +@Composable +fun NavHolderEl() { + //NavHost(navController = NavHostController(N), graph =) +} + +@Composable +fun Scaf(content: @Composable (PaddingValues) -> Unit) { + var expanded = rememberDrawerState(initialValue = DrawerValue.Closed) + var coScope = rememberCoroutineScope(); + + /*DropdownMenu( + expanded = expanded, + onDismissRequest = { expanded = false } + ) { + DropdownMenuItem( + text = { Text("Refresh") }, + onClick = { /* Handle refresh! */ } + ) + DropdownMenuItem( + text = { Text("Settings") }, + onClick = { /* Handle settings! */ } + ) + Divider() + DropdownMenuItem( + text = { Text("Send Feedback") }, + onClick = { /* Handle send feedback! */ } + ) + }*/ + ModalNavigationDrawer(drawerState = expanded, drawerContent = { + ModalDrawerSheet { + Text("Drawer title", modifier = Modifier.padding(16.dp), style = MaterialTheme.typography.titleLarge) + Divider() + NavigationDrawerItem( + label = { Text(text = "Drawer Item") }, + selected = true, + onClick = { /*TODO*/ } + ) + // ...other drawer items + } + + }) { + Scaffold( + topBar = { + TopAppBar( + title = { Text("Top App Bar") }, + colors = TopAppBarDefaults.largeTopAppBarColors( + containerColor = MaterialTheme.colorScheme.primaryContainer + ), + navigationIcon = { + IconButton(onClick = { coScope.launch { expanded.open() } }) { + Icon(Icons.Filled.Menu, contentDescription = null) + } + }, + ) + }, + floatingActionButtonPosition = FabPosition.End, + floatingActionButton = { + FloatingActionButton(onClick = {}) { + Icon(imageVector = Icons.Default.Add, contentDescription = "fab icon") + } + }, + //drawerContent = { Text(text = "Drawer Menu 1") }, + content = content, + + ) + } + +} + +@Preview(showBackground = true) +@Composable +fun GreetingPreview() { + NarodMonTheme { + Greeting("Android") + } +} \ No newline at end of file diff --git a/app/src/main/java/ru/nm17/narodmon/db/AppDatabase.kt b/app/src/main/java/ru/nm17/narodmon/db/AppDatabase.kt new file mode 100644 index 0000000..47e962c --- /dev/null +++ b/app/src/main/java/ru/nm17/narodmon/db/AppDatabase.kt @@ -0,0 +1,11 @@ +package ru.nm17.narodmon.db + +import androidx.room.Database +import androidx.room.RoomDatabase +import ru.nm17.narodmon.db.dao.UserDao +import ru.nm17.narodmon.db.entities.User + +@Database(entities = [User::class], version = 1) +abstract class AppDatabase : RoomDatabase() { + abstract fun userDao(): UserDao +} diff --git a/app/src/main/java/ru/nm17/narodmon/db/dao/UserDao.kt b/app/src/main/java/ru/nm17/narodmon/db/dao/UserDao.kt new file mode 100644 index 0000000..4666858 --- /dev/null +++ b/app/src/main/java/ru/nm17/narodmon/db/dao/UserDao.kt @@ -0,0 +1,26 @@ +package ru.nm17.narodmon.db.dao + +import androidx.room.Dao +import androidx.room.Delete +import androidx.room.Insert +import androidx.room.Query +import ru.nm17.narodmon.db.entities.User + +@Dao +interface UserDao { + @Query("SELECT * FROM user") + fun getAll(): List + + @Query("SELECT * FROM user WHERE uid IN (:userIds)") + fun loadAllByIds(userIds: IntArray): List + + @Query("SELECT * FROM user WHERE first_name LIKE :first AND " + + "last_name LIKE :last LIMIT 1") + fun findByName(first: String, last: String): User + + @Insert + fun insertAll(vararg users: User) + + @Delete + fun delete(user: User) +} diff --git a/app/src/main/java/ru/nm17/narodmon/db/entities/KVSetting.kt b/app/src/main/java/ru/nm17/narodmon/db/entities/KVSetting.kt new file mode 100644 index 0000000..1bf699c --- /dev/null +++ b/app/src/main/java/ru/nm17/narodmon/db/entities/KVSetting.kt @@ -0,0 +1,11 @@ +package ru.nm17.narodmon.db.entities + +import androidx.room.ColumnInfo +import androidx.room.Entity +import androidx.room.PrimaryKey + +@Entity +data class KVSetting( + @PrimaryKey val key: String, + @ColumnInfo(name = "value") val value: String, +) diff --git a/app/src/main/java/ru/nm17/narodmon/db/entities/User.kt b/app/src/main/java/ru/nm17/narodmon/db/entities/User.kt new file mode 100644 index 0000000..78658eb --- /dev/null +++ b/app/src/main/java/ru/nm17/narodmon/db/entities/User.kt @@ -0,0 +1,12 @@ +package ru.nm17.narodmon.db.entities + +import androidx.room.ColumnInfo +import androidx.room.Entity +import androidx.room.PrimaryKey + +@Entity +data class User( + @PrimaryKey val uid: Int, + @ColumnInfo(name = "first_name") val firstName: String, + @ColumnInfo(name = "last_name") val lastName: String +) diff --git a/app/src/main/java/ru/nm17/narodmon/ui/theme/Color.kt b/app/src/main/java/ru/nm17/narodmon/ui/theme/Color.kt new file mode 100644 index 0000000..904d844 --- /dev/null +++ b/app/src/main/java/ru/nm17/narodmon/ui/theme/Color.kt @@ -0,0 +1,11 @@ +package ru.nm17.narodmon.ui.theme + +import androidx.compose.ui.graphics.Color + +val Purple80 = Color(0xffffe294) +val PurpleGrey80 = Color(0xffffe294) +val Pink80 = Color(0xffffe294) + +val Purple40 = Color(0xffffe294) +val PurpleGrey40 = Color(0xff7a6f4f) +val Pink40 = Color(0xff969360) \ No newline at end of file diff --git a/app/src/main/java/ru/nm17/narodmon/ui/theme/Theme.kt b/app/src/main/java/ru/nm17/narodmon/ui/theme/Theme.kt new file mode 100644 index 0000000..666d520 --- /dev/null +++ b/app/src/main/java/ru/nm17/narodmon/ui/theme/Theme.kt @@ -0,0 +1,70 @@ +package ru.nm17.narodmon.ui.theme + +import android.app.Activity +import android.os.Build +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.darkColorScheme +import androidx.compose.material3.dynamicDarkColorScheme +import androidx.compose.material3.dynamicLightColorScheme +import androidx.compose.material3.lightColorScheme +import androidx.compose.runtime.Composable +import androidx.compose.runtime.SideEffect +import androidx.compose.ui.graphics.toArgb +import androidx.compose.ui.platform.LocalContext +import androidx.compose.ui.platform.LocalView +import androidx.core.view.WindowCompat + +private val DarkColorScheme = darkColorScheme( + primary = Purple80, + secondary = PurpleGrey80, + tertiary = Pink80 +) + +private val LightColorScheme = lightColorScheme( + primary = Purple80, + secondary = PurpleGrey80, + tertiary = Pink80 + + /* Other default colors to override + background = Color(0xFFFFFBFE), + surface = Color(0xFFFFFBFE), + onPrimary = Color.White, + onSecondary = Color.White, + onTertiary = Color.White, + onBackground = Color(0xFF1C1B1F), + onSurface = Color(0xFF1C1B1F), + */ +) + +@Composable +fun NarodMonTheme( + darkTheme: Boolean = isSystemInDarkTheme(), + // Dynamic color is available on Android 12+ + dynamicColor: Boolean = true, + content: @Composable () -> Unit +) { + val colorScheme = when { + dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> { + val context = LocalContext.current + if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context) + } + + darkTheme -> DarkColorScheme + else -> LightColorScheme + } + val view = LocalView.current + if (!view.isInEditMode) { + SideEffect { + val window = (view.context as Activity).window + window.statusBarColor = colorScheme.primary.toArgb() + WindowCompat.getInsetsController(window, view).isAppearanceLightStatusBars = darkTheme + } + } + + MaterialTheme( + colorScheme = colorScheme, + typography = Typography, + content = content + ) +} \ No newline at end of file diff --git a/app/src/main/java/ru/nm17/narodmon/ui/theme/Type.kt b/app/src/main/java/ru/nm17/narodmon/ui/theme/Type.kt new file mode 100644 index 0000000..9e79080 --- /dev/null +++ b/app/src/main/java/ru/nm17/narodmon/ui/theme/Type.kt @@ -0,0 +1,34 @@ +package ru.nm17.narodmon.ui.theme + +import androidx.compose.material3.Typography +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.sp + +// Set of Material typography styles to start with +val Typography = Typography( + bodyLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 16.sp, + lineHeight = 24.sp, + letterSpacing = 0.5.sp + ) + /* Other default text styles to override + titleLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 22.sp, + lineHeight = 28.sp, + letterSpacing = 0.sp + ), + labelSmall = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Medium, + fontSize = 11.sp, + lineHeight = 16.sp, + letterSpacing = 0.5.sp + ) + */ +) \ No newline at end of file diff --git a/app/src/main/proto/settings.proto b/app/src/main/proto/settings.proto new file mode 100644 index 0000000..5e559d4 --- /dev/null +++ b/app/src/main/proto/settings.proto @@ -0,0 +1,8 @@ +syntax = "proto3"; + +option java_package = "com.example.application"; +option java_multiple_files = true; + +message Settings { + int32 example_counter = 1; +} \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_sensors.xml b/app/src/main/res/layout/fragment_sensors.xml new file mode 100644 index 0000000..e076d3b --- /dev/null +++ b/app/src/main/res/layout/fragment_sensors.xml @@ -0,0 +1,14 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher.xml b/app/src/main/res/mipmap-anydpi/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..7095c8f --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,5 @@ + + Народный Мониторинг + + Hello blank fragment + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..6eff41e --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,5 @@ + + + +