任务' Xmx512m'在根项目中找不到

时间:2017-10-22 14:45:51

标签: android android-studio build.gradle jvm-arguments

任务' Xmx512m'在根项目' MyProject'

中找不到 gradle.properties 中的

显示Xmx1024m。

如何摆脱这个gradle构建错误?
我的操作系统是Windows 10。

build.gradle模块

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "in.ravisir.mateinstitute"
        minSdkVersion 17
        targetSdkVersion 24
    }
    buildTypes {
        release {
          minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    productFlavors {
    }
}
dependencies {
    compile 'com.android.support:support-v4:24.1.1'
    compile 'com.google.android.gms:play-services-ads:10.0.1'
    compile 'com.android.support:appcompat-v7:24.1.1'
    compile 'com.google.firebase:firebase-messaging:10.0.1'
    compile 'com.google.firebase:firebase-core:10.0.1'
    compile 'com.google.firebase:firebase-appindexing:10.0.1'
}

apply plugin: 'com.google.gms.google-services'

build.gradle Myapplication

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'
        classpath 'com.google.gms:google-services:3.0.0'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

0 个答案:

没有答案