Gradle build fails with Symja files

Issue #147 resolved
Arsala Bangash created an issue

I've attached the console output. I'm using the latest Android Studio Canary 3.0

I tried adding org.gradle.jvmargs=-Xmx2048m to my gradle properties

My build.gradle's android looks as follows:

android { compileSdkVersion 25 buildToolsVersion "25.0.2" defaultConfig { applicationId "com.example.arsala.csc398_android" minSdkVersion 15 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' } }

dexOptions {
    incremental true
    javaMaxHeapSize "4g"
    jumboMode true
    preDexLibraries = false
}

}

Comments (2)

  1. Log in to comment