1

I'm trying to import a Jgrapht library in my app, but every time i try to build APK, android studio shows me:

Error:Execution failed for task ':app:transformClassesWithPreJackPackagedLibrariesForDebug'.

com.android.sched.scheduler.RunnerProcessException: Error during 'TypeLegalizer' runner on 'private final synthetic int org.jgrapht.alg.vertexcover.-$Lambda$25.$m$0(java.lang.Object arg0)': Unexpected error during visit: com.android.jack.ir.ast.JReturnStatement at "Unknown source info"

What is the problem and how i can fix it? Please help me!

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion '25.0.0'


    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }

    defaultConfig {
        applicationId "it.univpm.gruppoids.iotforemergencyandnavigation"
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        jackOptions {
            enabled true
        }
    }

    compileOptions {
        incremental true
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    repositories {
        maven {
            url "https://mint.splunk.com/gradle/"
        }
    }

    packagingOptions {
        exclude 'META-INF/services/org.apache.sis.storage.DataStoreProvider'
        exclude 'META-INF/ASL2.0'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/MANIFEST.MF'
    }

    /*buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'),
                    'proguard-rules.pro'
        }
    }*/
}
dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:design:25.0.0'
    compile 'com.android.support:appcompat-v7:25.0.0'
    compile 'com.android.support:percent:25.0.0'
    compile 'com.android.support:support-v4:25.0.0'
    compile 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
    compile 'com.google.zxing:core:3.2.1'
    compile files('lib/jgrapht-ext-1.0.0-uber.jar')
    compile files('lib/jgrapht-ext-1.0.0.jar')
    compile files('lib/jgrapht-demo-1.0.0.jar')
    compile files('lib/jgraph-5.13.0.0.jar')
    compile files('lib/antlr4-runtime-4.5.3.jar')
    compile files('lib/jgrapht-core-1.0.0.jar')
}

And the other gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        mavenCentral()
        /*maven {
            url "https://plugins.gradle.org/m2/"
        }*/

        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.2'
        classpath 'me.tatarka:gradle-retrolambda:3.3.0'
    }
}
allprojects {
    repositories {
        jcenter()
        mavenCentral()
    }
}
apply plugin: 'me.tatarka.retrolambda'
task clean(type: Delete) {
    delete rootProject.buildDir
}
Piero Tozzi
  • 219
  • 2
  • 3
  • 4

1 Answers1

0

The easiest way I can think of is to use maven, then simply add the dependencies to your project. That'll save you a lot of hassel in setting up JGraphT by yourself.

you can find how to use maven with android studio here: How to import Maven dependency in Android Studio/IntelliJ?

While JGraphT's dependencies are here under the "Maven Releases" section: http://jgrapht.org/

Community
  • 1
  • 1
Kira
  • 23
  • 1
  • 5