当我将设备插入计算机时,我的应用程序在Android 4,5和6上运行良好。但是当我从app / build / outputs / apk目录中获取.apk文件并直接安装时,应用程序在启动时崩溃在Android 4上。仅限Android 4.为什么?以及如何解决它?
这是我的清单文件:
<manifest package="ru.pussy_penetrator.chgk"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".QuestionGridActivity"/>
<activity
android:name=".QuestionPagerActivity"/>
</application>
答案 0 :(得分:1)
禁用即时运行并构建APK。 “即时运行”使用设备缓存热交换您在项目中所做的更改。此外,它还优化了在您的测试设备所具有的平台上运行的代码。
您还可以生成Signed apk,以便在所有受支持的Android版本中进行分发