在Android Studio中我成功生成了我的签名apk然后我在Android手机和Android模拟器中下载了我的apk然后它显示不幸的是myapp已停止。如何解决这个问题?
这是logcat错误报告------------>
ldap
if (&LDAP-UserDN =~ /^.*ou=([^=,]+),ou=People,dc=example,dc=com$/) {
update reply {
Filter-ID := "%{1}"
}
}
答案 0 :(得分:0)
我认为问题与内存泄漏或较少的堆内存大小有关 尝试在app build.gradle文件中使用 multiDexEnabled true
之类的东西android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0.0.0.0.0"
multiDexEnabled true
}
dexOptions {
javaMaxHeapSize "4g"
}
}
并在应用程序标记内的AndroidManifiest.xml中 android:largeHeap =“true”
<application
android:allowBackup="true"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:largeHeap="true"
android:screenOrientation="portrait">
请提供有关问题的更多信息