Skip to content

Commit 2b2002e

Browse files
committed
Refactor import code to use webview #11 and #8
1 parent 936746b commit 2b2002e

11 files changed

Lines changed: 817 additions & 311 deletions

File tree

app/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ android {
1414
applicationId = "com.codelv.inventory"
1515
minSdk = 24
1616
targetSdk = 34
17-
versionCode = 11
18-
versionName = "1.0.11"
17+
versionCode = 12
18+
versionName = "1.0.12"
1919

2020
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2121
vectorDrawables {
@@ -104,6 +104,7 @@ dependencies {
104104
// XML Parsing
105105
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.0")
106106
implementation(libs.org.jsoup)
107+
implementation(libs.org.apache.commons.text)
107108

108109
// SQLite
109110
implementation(libs.androidx.room.runtime)

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
<category android:name="android.intent.category.LAUNCHER" />
2525
</intent-filter>
2626
</activity>
27+
<meta-data android:name="android.webkit.WebView.MetricsOptOut"
28+
android:value="true" />
2729
</application>
2830

2931
</manifest>

app/src/main/java/com/codelv/inventory/MainActivity.kt

Lines changed: 271 additions & 26 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)