应用程序在重新打开后打开到空白屏幕,而不是显示上次打开的状态

时间:2016-06-04 15:52:45

标签: android android-layout firebase-realtime-database firebase-authentication

我是Android开发的新手,我经历过我的应用程序的这种奇怪的行为,无论何时我打开我的应用程序并且平行打开其他应用程序,做一些冲浪并在几分钟后再次打开我的应用程序它将打开一个空白屏幕而不是打开我最后冲浪的屏幕。再次访问应用程序我需要强制停止应用程序并再次重新启动它。请帮我解决一下这个。我正在使用Android studio进行开发。

这是我的gradle文件,当我删除了firebase和android gms-playservices相关的依赖项时它工作正常但不包括这两个。

buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
    maven { url 'https://maven.fabric.io/public' }
}


android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    dexOptions {
        javaMaxHeapSize "4g"
    }
    defaultConfig {
        applicationId "teletextholidaysapp.com.teletextholidaysandroid"
        minSdkVersion 10
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {

            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    //   compile fileTree(dir: 'libs', include: ['*.jar'])
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.1'
    compile 'com.android.support:design:23.2.0'
    compile 'com.android.support:percent:23.2.0'
    compile 'com.google.code.gson:gson:2.6.2'
    compile 'com.google.maps.android:android-maps-utils:0.4+'
    compile 'com.google.android.gms:play-services-maps:9.0.0'
    compile 'com.android.support:support-v4:23.2.0'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'org.jsoup:jsoup:1.8.3'
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.facebook.android:facebook-android-sdk:4.5.0'
   compile 'com.google.android.gms:play-services:9.0.0'
    compile 'com.google.firebase:firebase-auth:9.0.0'
    compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
        transitive = true;
    }
    apply plugin: 'com.google.gms.google-services'

}

0 个答案:

没有答案