无法下载

时间:2016-10-22 20:42:15

标签: android

我正在制作一个Android应用程序(使用运行4.4.4的物理设备进行测试),每当我新鲜运行它或打开它时,如果它已经安装,那么它会显示"Currently unable to download. Please try again later"吐司。我没有在应用程序中下载任何内容,我不使用互联网,我不确定哪些文件是相关的,有人让我知道,我可以发布它们。我不知道这可能来自哪里。

我唯一能想到的可能是SharedPreference正在做一些奇怪的事情?我至少会发布我的gradle。

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "24.0.1"

    defaultConfig {
        applicationId "com.apps.andapp.appname"
        minSdkVersion 19
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.google.code.gson:gson:2.7'
}

0 个答案:

没有答案