3

I used to generate a signed apk from Android Studio and everything was working well until I updated Android Studio to 3.3. It generates an apk but after I try to install it, it says: App Not Installed!

My Trial was by:

  1. Click on build
  2. Generate Signed Apk
  3. Choose APK and click Next
  4. Insert the Key Store Path, Key Store Password, Key Alias, Key Password
  5. Click Next
  6. Choose Release Variant
  7. Click Finish

The Apk is generated but it's not signed! What is the problem ?

This is after trying to upload to beta

Here is my app build.gradle

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 {
    useLibrary 'org.apache.http.legacy'
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.twobreathe.soft2breathe"
        minSdkVersion 23
        targetSdkVersion 27
        versionCode 9
        versionName "1.1"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        externalNativeBuild {
            cmake {
                cppFlags ""
            }
        }
        vectorDrawables {
            useSupportLibrary true
        }
        resConfigs "en", "ja"
    }
    signingConfigs {
        release {
            keyAlias "[my key alias]"
            keyPassword "[my key password]"
            storeFile file("[path to the keystore file]")
            storePassword "[my store password]"
        }
    }

    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            shrinkResources true
            pseudoLocalesEnabled false
        }

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


    }
    externalNativeBuild {
        cmake {
            path "src/main/cpp/fluidsynth/android/CMakeLists.txt"
        }
    }
    lintOptions {
        checkReleaseBuilds false
        abortOnError false
    }
    dataBinding {
        enabled true
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildToolsVersion '28.0.3'
    productFlavors {
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.github.parse-community.Parse-SDK-Android:parse:1.18.4'
    implementation 'com.jjoe64:graphview:4.2.2'
    implementation 'io.reactivex.rxjava2:rxjava:2.2.0'
    implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
    testImplementation 'junit:junit:4.12'
    implementation 'com.orhanobut:hawk:2.0.1'
    implementation 'xyz.sahildave:arclayout:1.0.0'
    implementation 'com.mikhaellopez:circularprogressbar:2.0.0'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    implementation 'com.github.GrenderG:Toasty:1.3.0'
    implementation 'com.kyleduo.switchbutton:library:2.0.0'
    implementation 'com.github.franmontiel:LocaleChanger:0.9.2'
    implementation 'cn.aigestudio.wheelpicker:WheelPicker:1.1.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.crashlytics.sdk.android:crashlytics:2.9.8'
}
4

7 回答 7

5

更新到 3.3 后,出现许多与签名 APK 相关的问题。有时它不签署apk,有时它说密钥不是私有的。

好吧,在升级到 android studio 3.3 后我也遇到了这个问题,我分 3 个步骤解决了。但首先要确保备份整个项目。

  1. 在 Android Studio 中转到 File > Project Structure 并取消“使用嵌入式 JDK”,然后单击 OK
  2. 转到计算机设置(系统设置)(win + 暂停键),然后转到高级系统设置>环境变量。如果 JAVA_HOME 不存在,则添加它并设置已安装 JDK 的路径。
    由于我在我的项目中找不到直接修改 jdk 路径的方法,该路径以某种方式升级到 android studio 3.3 设置,所以我做了以下操作(最后一步),但请确保在此之前进行备份。
  3. 为了确保我引导到项目视图的位置,我从根目录中删除了“.grade”、“.idea”、“capture”、“gradle”文件夹和“build”、“release”、“lib”文件夹。应用程序”离开“src”。删除了root.iml,没有删除app.iml文件然后重建项目,然后创建Signed包。

试了2次就成功了。老实说,我通过从备份恢复文件做了最后一步。在删除这些文件夹时,我搞砸了 1 次。

于 2019-02-03T15:33:52.560 回答
2

不是严格相关的,但是在寻找解决问题的方法时,我最终遇到了这个问题。就我而言,我忘记为我的一种非调试内置类型删除“可调试的真”。当我生成捆绑包时,谷歌游戏商店不会抱怨它只是说它没有签名。但是当我尝试上传 apk 时,它显示了真正的错误。

于 2020-03-09T14:58:41.017 回答
2

从您的 Gradle 可以看出您尚未使用它配置您的签名配置。

请检查下面的图片:

在此处输入图像描述

步骤1:

转到您的项目设置>选择您的模块(比如说“应用程序”)>转到签名>输入正确的信息和keystore.jks文件

第2步:

转到构建类型 > 选择发布类型 > 分配您在步骤 1 中创建的签名配置。 > 之后,您的 gradle 将具有图像中的配置。

第 3 步:

尝试生成签名的 APK。

一定会成功!!!

快乐编码..

于 2019-01-31T12:45:03.523 回答
0

朋友,当您现在在 android studio 3.3 中构建已签名的 apk 时,您将有 2 个选项来构建已签名的 apk。1.Android 应用程序包 2.APK

我会建议使用选项 2

选择选项 2 并单击下一步按钮现在工作室询问您的密码详细信息现在填写所有详细信息并为功能选择记住密码复选框,然后现在下一步。现在工作室再次要求调试和发布构建确认现在在这里选择发布并选择底部的 2 复选框,然后继续

希望您的签名 apk 将被生成。

于 2019-01-28T10:12:28.750 回答
0

尝试使用命令行工具对其进行签名。我可以帮你找出问题。(https://developer.android.com/studio/build/building-cmdline)。

就我而言,这是 JAVA_HOME 问题(如@Vanshaj Daga 的回答)。

于 2020-11-07T09:41:36.240 回答
0

仔细检查最终对话框中的两个值,标记为“签名版本”。有关更多信息,请查看以下链接: https ://developer.android.com/about/versions/nougat/android-7.0#apk_signature_v2

无论如何,这个问题似乎重复如下: android studio: release apk is not signed

于 2019-01-28T09:52:04.067 回答
0

生成 APK 时,请确保两种签名类型都被选中,否则 Fabric(和其他地方)可能无法将其识别为已签名。

此外,您可能希望debuggable true从发布配置中删除,因为可调试版本无法上传到 Google Play。这也有可能导致问题。

签名选项

于 2019-01-31T12:45:52.940 回答