可在Androidstudio中运行的应用,但未安装APK

时间:2019-06-20 11:46:21

标签: java android android-studio apk

我目前正在用android开发游戏。一切正常(我通过USB和Android Studio在移动设备上运行了该应用程序),直到尝试为Playstore导出签名的.apk。

我尝试生成一个签名的APK和AAB,生成一个密钥,然后单击V1和V2。当然,我还将build变体设置为release。我没有任何味道。因为我的MainActivity是OpenGL活动,所以我只有一个布局,但没有主活动。 我试图通过将apk移动到我的手机(通过USB或Google云端硬盘)来安装它,其中我的手机给我错误“无法安装应用程序”(由我翻译成英文:D) 我尝试通过adb install指示“成功”进行安装,但我只能在其指示为“已安装”但无法运行的Playstore(我们已经有一个Playstore条目)上找到该应用程序。

我的Android清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="de.neoideas.run_racoon">

    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/logo"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/logo_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name="de.neoideas.run_racoon.BlackCloudActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="https" android:host="www.neo-ideas.de" android:pathPrefix="/" />
            </intent-filter>
        </activity>
        <meta-data
            android:name="com.google.android.gms.ads.APPLICATION_ID"
            android:value="ca-app-pub-2569315251754887~5222462081" />
        <meta-data
            android:name="preloaded_fonts"
            android:resource="@array/preloaded_fonts" />

        <activity android:name="de.neoideas.run_racoon.InfoSite" />

    </application>

</manifest>

我的Gradle版本:

apply plugin: 'com.android.application'

android {
    signingConfigs {
    }
    compileSdkVersion 28
    defaultConfig {
        applicationId "de.neoideas.run_racoon"
        targetSdkVersion 28
        versionCode 5
        versionName "3.2"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        minSdkVersion 19
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_6
        targetCompatibility JavaVersion.VERSION_1_6
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.google.android.gms:play-services-ads:17.2.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support:support-vector-drawable:28.0.0'
    implementation 'android.arch.lifecycle:extensions:1.1.1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation files('libs/jdom-2.0.6.jar')
}

在Gradle中指出: 所有com.android.support库都必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本28.0.0,26.1.0。示例包括com.android.support:animated-vector-drawable:28.0.0和com.android.support:customtabs:26.1.0

这令人困惑,因为我从未使用过customtabs。...

感谢您的帮助! 如果您还需要任何代码,我们很乐意提供。

0 个答案:

没有答案