我使用Android Studio 2.3和Nexus 6 API 25作为模拟器。我创建了一个应用程序,我用它来登录firebase并显示一些图像URL。当我在模拟器中运行应用程序时,一切正常。 但是当在真正的Android设备中运行应用程序时,应用程序会安装并且我可以使用新用户&密码并在firebase中检查json数据库以获取新条目。
直到上面的应用程序在真实设备中工作正常。但是当我去登录时,应用停止并显示消息“不幸的是,该应用程序已停止”。
我按照以下步骤进行了排查,但错误仍然存在
1.Disabled即时运行。 2.在manifest.xml中添加android:largeHeap =“true”以防止内存不足问题 3.在android studio中创建.apk文件并传输到真实设备。
我附上了我的gradle文件,清单文件。
******的build.gradle **: - ****
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.example.win81.eathut"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
//Add Library
compile 'com.cepheuen.elegant-number-button:lib:1.0.2'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.firebase:firebase-core:10.2.0'
compile 'com.google.firebase:firebase-database:10.2.0'
compile 'info.hoang8f:fbutton:1.0.5'
compile 'com.rengwuxian.materialedittext:library:2.1.4'
compile 'com.android.support:design:25.3.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.firebaseui:firebase-ui-database:1.2.0'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
**** ****的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.win81.eathut">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SignIn" />
<activity android:name=".SignUp" />
<activity
android:name=".Home"
android:label="@string/title_activity_home"
android:theme="@style/AppTheme" />
<activity android:name=".List" />
<activity android:name=".Detail"></activity>
</application>
</manifest>
我的真实设备规格是 型号 - 三星SM-G530H Android版本:-5.0.2,API 21
请帮帮我。
注意:我可以在此设备中轻松运行任何反应原生应用。