Compare commits
16 Commits
main
...
figma_ui_u
Author | SHA1 | Date | |
---|---|---|---|
49d4045ed5 | |||
51ccf5d732 | |||
e111768481 | |||
8b43ee237b | |||
550bba3b09 | |||
ac3c1be6ef | |||
987da17dfa | |||
653ddc4e8a | |||
4ce1867601 | |||
ba83fbf606 | |||
6368fd3472 | |||
72ba20edfc | |||
25123b0fde | |||
e132c13be6 | |||
fcc312c178 | |||
ab5432b26d |
BIN
Frame 2085660563.png
Normal file
BIN
Frame 2085660563.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 576 KiB |
BIN
Frame 2085660564.png
Normal file
BIN
Frame 2085660564.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 568 KiB |
BIN
Frame 2085660567.png
Normal file
BIN
Frame 2085660567.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 797 KiB |
BIN
Frame 2085660568.png
Normal file
BIN
Frame 2085660568.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 787 KiB |
@ -49,15 +49,20 @@ dependencies {
|
||||
|
||||
implementation("com.squareup.picasso:picasso:2.8")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.1")
|
||||
implementation("androidx.datastore:datastore-preferences:1.1.1")
|
||||
implementation("androidx.datastore:datastore-preferences:1.1.2")
|
||||
implementation("com.google.mlkit:barcode-scanning:17.3.0")
|
||||
|
||||
val cameraX = "1.3.4"
|
||||
// для прокручивающегося списка, не работает - удаляй
|
||||
implementation("androidx.recyclerview:recyclerview:1.4.0")
|
||||
implementation("com.github.javafaker:javafaker:1.0.2")
|
||||
implementation("com.github.bumptech.glide:glide:4.14.2")
|
||||
|
||||
val cameraX = "1.4.1"
|
||||
implementation("androidx.camera:camera-core:$cameraX")
|
||||
implementation("androidx.camera:camera-camera2:$cameraX")
|
||||
implementation("androidx.camera:camera-lifecycle:$cameraX")
|
||||
implementation("androidx.camera:camera-view:$cameraX")
|
||||
implementation("androidx.camera:camera-mlkit-vision:1.4.0-rc04")
|
||||
implementation("androidx.camera:camera-mlkit-vision:1.4.1")
|
||||
|
||||
val hilt = "2.51.1"
|
||||
implementation("com.google.dagger:hilt-android:$hilt")
|
||||
|
@ -2,24 +2,20 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<uses-feature android:name="android.hardware.camera.any" />
|
||||
<uses-permission android:name="android.permission.CAMERA" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
<application
|
||||
android:name=".App"
|
||||
android:allowBackup="true"
|
||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||
android:fullBackupContent="@xml/backup_rules"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.Default"
|
||||
android:theme="@style/Theme.CodiaDemoComposeUI"
|
||||
tools:targetApi="31">
|
||||
<activity
|
||||
android:name=".ui.RootActivity"
|
||||
android:exported="true">
|
||||
android:name=".MainActivity"
|
||||
android:exported="true"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/Theme.CodiaDemoComposeUI">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user