Android Studio在运行后不会更改我的代码

时间:2018-03-30 12:36:28

标签: android kotlin

我对Android Studio有一个奇怪的问题。当我运行我的应用程序时,没有gradlebuild 等等只是安装应用程序和启动活动,这意味着我在我的apk中将更改代码中的任何内容。

你知道为什么会这样吗?

项目级别gradle:

buildscript {
ext.kotlin_version = '1.2.30'
repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.1.0'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
    classpath 'com.google.gms:google-services:3.2.0'
    classpath "io.realm:realm-gradle-plugin:5.0.0"
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

allprojects {
repositories {
    google()
    jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

app level gradle:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions' 
apply plugin: 'kotlin-kapt'
apply plugin: 'realm-android'

android {
compileSdkVersion 26
defaultConfig {
    applicationId ""
    minSdkVersion 16
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
realm {
    syncEnabled = true;
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:support-v4:26.1.0'
implementation 'com.android.support:recyclerview-v7:26.1.0'
implementation 'com.android.support:cardview-v7:26.1.0'
}
apply plugin: 'com.google.gms.google-services'

4 个答案:

答案 0 :(得分:2)

您必须在Android Studio中修复“运行”流程。

查看主工具栏并找到此框: enter image description here

单击该框并选择Edit Configurations...

确保该窗口在Before launch部分中包含以下项目:

  • Gradle-aware Make
  • 即时应用程序提供

enter image description here

单击“确定”。

运行您的应用。

答案 1 :(得分:0)

尝试按照说明一定会对你有所帮助。我在几个月之前就已经面临同样的问题了。


*更新Android Studio中的ADB。
*卸载应用程序。
*重启adb start-server。
*重新启动测试设备。

答案 2 :(得分:0)

试试这个:文件菜单 - >使高速缓存/重新启动无效。我认为它会解决你的问题。

答案 3 :(得分:0)

在Android Studio的3.1.0构建工具升级中出现了问题。请按照以下步骤解决此问题。

  1. 选择“运行”,然后点击“修改配置”

    确保在TaskList中添加Gradle-aware Make或不添加。如果没有,那么:

  2. 点击+

  3. 选择Gradle-aware Make
  4. 将任务留空,然后选择确定
  5. 注意:确保Gradle-aware Make在Instant App Provision之前