安装发布版本时出现App Not Installed错误

时间:2017-05-26 11:18:49

标签: android apk release android-6.0-marshmallow android-studio-2.3

我收到此错误,因为我更新了Android Studio,并且由于更改了应用程序gradle。这个问题仅适用于棉花糖设备。应用程序安装在带有牛轧糖的sansung s7上。

     apply plugin: 'com.android.application'

     android {
         signingConfigs {
          config {
            keyAlias '#########'
            keyPassword '########'
            storeFile file('#########')
            storePassword '############'
         }
     }
     compileSdkVersion 23
     buildToolsVersion '25.0.0'
     useLibrary 'org.apache.http.legacy'
      defaultConfig {
        applicationId "###########"
        minSdkVersion 19
        targetSdkVersion 23
        versionCode 14
        versionName '14.0'
        multiDexEnabled true
        signingConfig signingConfigs.config
        vectorDrawables.useSupportLibrary = true
     }
    dexOptions {
        javaMaxHeapSize "4g" 
        preDexLibraries = fal  se             
    }
    buildTypes {
      release {
          minifyEnabled false
           proguardFiles getDefaultProguardFile('proguard-
           android.txt'), 'proguard-rules.pro'
      }
    }
    packagingOptions {
      exclude 'META-INF/DEPENDENCIES.txt'
      exclude 'META-INF/LICENSE.txt'
      exclude 'META-INF/NOTICE.txt'
      exclude 'META-INF/NOTICE'
      exclude 'META-INF/LICENSE'
      exclude 'META-INF/DEPENDENCIES'
      exclude 'META-INF/notice.txt'
      exclude 'META-INF/license.txt'
      exclude 'META-INF/dependencies.txt'
      exclude 'META-INF/LGPL2.1'
    }
   android {
      lintOptions {
          disable 'MissingTranslation'
          disable 'ResourceName'
      }
    } 
}
repositories {
 mavenCentral()
 maven { url "http://jzaccone.github.io/SlidingMenu-aar" }
}
dependencies {
 compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile project(path: ':croplibrary')
compile project(path: ':ucrop')
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.jeremyfeinstein.slidingmenu:library:1.3@aar'
compile 'com.google.android.gms:play-services-analytics:9.8.0'
compile 'com.google.android.gms:play-services-auth:9.8.0'
compile 'com.google.android.gms:play-services-gcm:9.8.0'
compile 'com.google.android.gms:play-services-maps:9.8.0'
compile 'com.google.android.gms:play-services-location:9.8.0'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'org.apache.httpcomponents:httpcore:4.3.3'
compile 'org.apache.httpcomponents:httpmime:4.3.6'
compile 'org.apache.httpcomponents:httpclient:4.3.6'
compile 'com.facebook.android:facebook-android-sdk:4.8.0'
compile 'com.makeramen:roundedimageview:2.3.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.journeyapps:zxing-android-embedded:3.4.0'

}

我从早上安装android studio后就遇到了这个问题。它只有发布APK的问题,如果我直接从Studio安装调试APK,它运行良好。

0 个答案:

没有答案