应用程序一直停止在 kitkat 中
app keeps stopping in kitkat
我在工作室中创建了一个简单的 android 项目。但它不会 运行 kitkat 及以下版本。但它适用于 lollipop+ 版本。我创建的每个项目都不会 运行 in kitkat。当我打开我的 activity 它只是在真实设备上停止但 运行s 在模拟器上正常。我无法将 phone 连接到 PC。所以我无法在 logcat 中显示错误。我尝试了很多东西。
Gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.example.demotoruninpos"
minSdkVersion 16
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(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
{
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
testCompile 'junit:junit:4.12'
}
清单文件:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.demotoruninpos">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
您遇到此问题是因为您的 android 工作室启用了即时 运行。你必须做什么....
转到
File > Setting > Build,Execution,Dev > Instant run > Turn it OFF.
现在你可以开始了..Happy Codding
我在工作室中创建了一个简单的 android 项目。但它不会 运行 kitkat 及以下版本。但它适用于 lollipop+ 版本。我创建的每个项目都不会 运行 in kitkat。当我打开我的 activity 它只是在真实设备上停止但 运行s 在模拟器上正常。我无法将 phone 连接到 PC。所以我无法在 logcat 中显示错误。我尝试了很多东西。
Gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.example.demotoruninpos"
minSdkVersion 16
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(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
{
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
testCompile 'junit:junit:4.12'
}
清单文件:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.demotoruninpos">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
您遇到此问题是因为您的 android 工作室启用了即时 运行。你必须做什么....
转到
File > Setting > Build,Execution,Dev > Instant run > Turn it OFF.
现在你可以开始了..Happy Codding