Fixes issue with unappearing screen

blinds
Laurent 3 years ago
parent e40c5c0cd6
commit cb7711e33b
  1. 6
      app/build.gradle
  2. 8
      app/src/main/AndroidManifest.xml

@ -15,7 +15,7 @@ repositories {
android {
compileSdkVersion 30
compileSdkVersion 32
buildToolsVersion "30.0.2"
compileOptions {
@ -34,7 +34,7 @@ android {
defaultConfig {
applicationId "net.pokeranalytics.android"
minSdkVersion 23
targetSdkVersion 30
targetSdkVersion 32
versionCode 134
versionName "5.4.10"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@ -108,7 +108,7 @@ dependencies {
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.work:work-runtime-ktx:2.4.0'
implementation 'androidx.work:work-runtime-ktx:2.7.1'
implementation 'com.google.android.play:core-ktx:1.8.1' // In-app Reviews
// Places

@ -29,7 +29,8 @@
android:name="net.pokeranalytics.android.ui.activity.HomeActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
android:screenOrientation="portrait">
android:screenOrientation="portrait"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
@ -42,7 +43,8 @@
<activity
android:name="net.pokeranalytics.android.ui.activity.ImportActivity"
android:launchMode="singleTop"
android:screenOrientation="portrait">
android:screenOrientation="portrait"
android:exported="true">
<intent-filter tools:ignore="AppLinkUrlError">
<action android:name="android.intent.action.VIEW" />
@ -131,7 +133,7 @@
<activity
android:name="net.pokeranalytics.android.ui.modules.data.EditableDataActivity"
android:launchMode="singleTop"
android:launchMode="standard"
android:screenOrientation="portrait" />
<activity

Loading…
Cancel
Save