Skip to content

Commit c43a77c

Browse files
Merge pull request #2 from NicosNicolaou16/refactor_readme
Refactor readme
2 parents 4122048 + 15e1e81 commit c43a77c

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
# Sample and Testing Machine Learning Android Code Scanner
2-
This sample and testing project contain the new Google Code Scanner. <br />
3-
The project is a simple button to start the Google Code Scanner. <br />
4-
For testing purpose, I generated a barcode with website link, scan the barcode and open this link in the browser, tested and supported to open only website link. <br />
5-
The project is implemented with Jetpack Compose. <br />
62

7-
## Check my article
3+
This sample project demonstrates the new Google Code Scanner. It features a simple button to
4+
initiate the scanner. For testing purposes, I generated a barcode containing a website link, which,
5+
when scanned, opens the link in the browser. The project currently supports only opening website
6+
links. It is implemented using Jetpack Compose. <br />
87

9-
https://medium.com/@nicosnicolaou/machine-learning-android-code-scanner-4301b91b1fa5 <br />
8+
> [!IMPORTANT]
9+
> Check my article for the setup :point_right: [Android Machine Learning Code Scanner - Medium](https://medium.com/@nicosnicolaou/machine-learning-android-code-scanner-4301b91b1fa5) :point_left: <br />
1010
11-
# References/Tutorials Follow
12-
https://twitter.com/AndroidDev/status/1642915475536453632?s=20 <br />
13-
https://developers.google.com/ml-kit/vision/barcode-scanning/code-scanner#java <br />
11+
# Versioning
1412

1513
Target SDK version: 35 <br />
1614
Minimum SDK version: 28 <br />
1715
Kotlin version: 2.1.0 <br />
18-
Gradle version: 8.7.2 <br />
16+
Gradle version: 8.7.3 <br />
17+
18+
# References/Tutorials Follow
19+
20+
https://twitter.com/AndroidDev/status/1642915475536453632?s=20 <br />
21+
https://developers.google.com/ml-kit/vision/barcode-scanning/code-scanner#java <br />

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'com.android.application'
33
id 'org.jetbrains.kotlin.android'
4-
id("org.jetbrains.kotlin.plugin.compose") version "2.0.21"
4+
id("org.jetbrains.kotlin.plugin.compose") version "2.1.0"
55
}
66

77
android {
@@ -54,15 +54,15 @@ dependencies {
5454
implementation 'androidx.fragment:fragment-ktx:1.8.5'
5555
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
5656
implementation 'androidx.activity:activity-compose:1.9.3'
57-
implementation platform('androidx.compose:compose-bom:2024.11.00')
57+
implementation platform('androidx.compose:compose-bom:2024.12.01')
5858
implementation 'androidx.compose.ui:ui'
5959
implementation 'androidx.compose.ui:ui-graphics'
6060
implementation 'androidx.compose.ui:ui-tooling-preview'
6161
implementation 'androidx.compose.material3:material3'
6262
testImplementation 'junit:junit:4.13.2'
6363
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
6464
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
65-
androidTestImplementation platform('androidx.compose:compose-bom:2024.11.00')
65+
androidTestImplementation platform('androidx.compose:compose-bom:2024.12.01')
6666
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
6767
debugImplementation 'androidx.compose.ui:ui-tooling'
6868
debugImplementation 'androidx.compose.ui:ui-test-manifest'

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '8.7.2' apply false
4-
id 'com.android.library' version '8.7.2' apply false
3+
id 'com.android.application' version '8.7.3' apply false
4+
id 'com.android.library' version '8.7.3' apply false
55
id 'org.jetbrains.kotlin.android' version '2.1.0' apply false
66
}

0 commit comments

Comments
 (0)