Skip to content

Commit

Permalink
targetSdkVersion 33 -> 34
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaljurand committed Jun 24, 2023
1 parent e23fe7a commit a105cad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ android {
defaultConfig {
applicationId 'ee.ioc.phon.android.speak'
minSdkVersion 24
targetSdkVersion 33
versionCode 1906
versionName '1.9.06'
targetSdkVersion 34
versionCode 1907
versionName '1.9.07'
vectorDrawables.useSupportLibrary = true
// Keep only en and et resources
resConfigs 'en', 'et'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
Expand Down Expand Up @@ -553,7 +552,7 @@ private void handleResultByLaunchIntent(String result) {
boolean isFinish = true;
if (mExtras.containsKey(Extras.EXTRA_FINISH_AFTER_LAUNCH_INTENT)) {
isFinish = mExtras.getBoolean(Extras.EXTRA_FINISH_AFTER_LAUNCH_INTENT, true);
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N && isInMultiWindowMode()) {
} else if (isInMultiWindowMode()) {
isFinish = false;
}
if (isFinish) {
Expand Down
2 changes: 1 addition & 1 deletion speechutils
Submodule speechutils updated 1 files
+1 −1 app/build.gradle

0 comments on commit a105cad

Please sign in to comment.