我正在开发智能手机游戏,当我在AVD的Android工作室测试时,它可以工作,但是当我在我的设备上测试它时它就会关闭,我不知道为什么会这样。
我只是想查看日志文件,但我找不到它。
android
{
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "seaweed.myapplication"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
我在api级别24的AVD测试,我的设备的api级别为19。 所以我认为它可能因为api水平而发生,但我无法实现它。