Skip to content

Commit

Permalink
Change min Android API level to 23
Browse files Browse the repository at this point in the history
  • Loading branch information
vamsi3 committed Feb 8, 2023
1 parent b6e0425 commit efaed44
Show file tree
Hide file tree
Showing 7 changed files with 128 additions and 130 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
defaultConfig {
applicationId = "com.vamsi3.android.screentranslator"
versionCode = 2
versionName = "0.0.2"
versionName = "0.0.3"
}

buildTypes {
Expand Down
10 changes: 8 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vamsi3.android.screentranslator">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<queries>
<package android:name="com.google.ar.lens" />
<package android:name="com.naver.labs.translator" />
<package android:name="com.deepl.mobiletranslator" />

<intent>
<action android:name="android.intent.action.SEND" />
<data android:mimeType="image/jpeg" />
</intent>
</queries>

<application
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal fun Project.configureKotlinAndroid(
compileSdk = 33

defaultConfig {
minSdk = 31
minSdk = 23
}

compileOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class UserPreferencesDataSource @Inject constructor(
}
.stateIn(CoroutineScope(Dispatchers.IO), SharingStarted.Eagerly, UserData(
true,
250.milliseconds,
300.milliseconds,
ThemeMode.SYSTEM,
TranslateApp.GOOGLE_LENS
))
Expand Down
Loading

0 comments on commit efaed44

Please sign in to comment.