Andoroid用オブジェクト検出アプリ
Revision | ec5035e0a05d0d1acf4872e8fc8552a8b2506cbb (tree) |
---|---|
Zeit | 2022-08-28 21:22:03 |
Autor | MRSa <mrsa@myad...> |
Commiter | MRSa |
ライブラリを更新。
@@ -4,12 +4,12 @@ plugins { | ||
4 | 4 | } |
5 | 5 | |
6 | 6 | // ----- for Jetpack Compose |
7 | -def compose_version = '1.3.0-alpha01' | |
8 | -def navigation_version = '2.5.0' | |
7 | +def compose_version = '1.3.0-beta01' | |
8 | +def navigation_version = '2.5.1' | |
9 | 9 | |
10 | 10 | // ----- for cameraX |
11 | -def camerax_version = "1.2.0-alpha03" | |
12 | -def camerax_view_version = "1.2.0-alpha03" | |
11 | +def camerax_version = "1.2.0-beta01" | |
12 | +def camerax_view_version = "1.2.0-beta01" | |
13 | 13 | |
14 | 14 | android { |
15 | 15 | compileSdk 32 |
@@ -54,10 +54,10 @@ android { | ||
54 | 54 | dependencies { |
55 | 55 | |
56 | 56 | implementation 'androidx.core:core-ktx:1.8.0' |
57 | - implementation 'androidx.appcompat:appcompat:1.4.2' | |
58 | - implementation 'androidx.activity:activity-ktx:1.6.0-alpha05' | |
57 | + implementation 'androidx.appcompat:appcompat:1.5.0' | |
58 | + implementation 'androidx.activity:activity-ktx:1.6.0-rc01' | |
59 | 59 | |
60 | - implementation "androidx.core:core-splashscreen:1.0.0-rc01" | |
60 | + implementation "androidx.core:core-splashscreen:1.0.0" | |
61 | 61 | |
62 | 62 | implementation 'com.google.android.material:material:1.6.1' |
63 | 63 | implementation 'androidx.constraintlayout:constraintlayout:2.1.4' |
@@ -65,7 +65,7 @@ dependencies { | ||
65 | 65 | implementation 'androidx.preference:preference-ktx:1.2.0' |
66 | 66 | implementation 'androidx.exifinterface:exifinterface:1.3.3' |
67 | 67 | implementation "androidx.datastore:datastore-preferences:1.0.0" |
68 | - implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0' | |
68 | + implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' | |
69 | 69 | |
70 | 70 | implementation "androidx.camera:camera-core:$camerax_version" |
71 | 71 | implementation "androidx.camera:camera-camera2:$camerax_version" |
@@ -84,7 +84,7 @@ dependencies { | ||
84 | 84 | |
85 | 85 | implementation "androidx.navigation:navigation-compose:$navigation_version" |
86 | 86 | |
87 | - implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1" | |
87 | + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4" | |
88 | 88 | |
89 | 89 | //implementation "org.tensorflow:tensorflow-lite:2.3.0" |
90 | 90 | //implementation 'org.tensorflow:tensorflow-lite-task-text:0.3.0' |
@@ -1,7 +1,7 @@ | ||
1 | 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. |
2 | 2 | plugins { |
3 | - id 'com.android.application' version '7.2.1' apply false | |
4 | - id 'com.android.library' version '7.2.1' apply false | |
3 | + id 'com.android.application' version '7.2.2' apply false | |
4 | + id 'com.android.library' version '7.2.2' apply false | |
5 | 5 | id 'org.jetbrains.kotlin.android' version '1.6.21' apply false |
6 | 6 | } |
7 | 7 |