应用程序一直停在kitkat

时间:2017-10-05 06:28:44

标签: android version android-4.4-kitkat

我在studio中创建了一个简单的android项目。但它不会在kitkat及以下版本中运行。但它适用于棒棒糖+版本。我创建的每个项目都不会在kitkat中运行。当我打开我的活动时,它只是在真实设备上停止但在模拟器上正常运行。我无法将手机连接到电脑上。所以我无法在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>

1 个答案:

答案 0 :(得分:2)

你有这个问题,因为你的android工作室启用了即时运行。你需要做什么......

转到

File > Setting > Build,Execution,Dev > Instant run > Turn it OFF.  

现在你很高兴......快乐的Codding