• Android. Robospice + ormlite + retrofit Ошибка сборки. Что надо написать в gradle файле?

    @real_mista Автор вопроса
    build.gradle
    apply plugin: 'com.android.application'
    
    
    
    android {
    
        compileSdkVersion 22
        buildToolsVersion "22.0.1"
    
        defaultConfig {
            applicationId "insales.ru.robospiceexample"
            minSdkVersion 15
            targetSdkVersion 22
            versionCode 1
            versionName "1.0"
    
    //        multiDexEnabled true
        }
    
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    
    dependencies {
    
        compile 'com.android.support:appcompat-v7:22.2.0'
    
    
        compile ('com.octo.android.robospice:robospice-retrofit:1.4.6') {
            exclude group: 'org.apache.commons', module: 'commons-io'
        }
        compile ('com.octo.android.robospice:robospice-ormlite:1.4.6') {
            exclude group: 'org.apache.commons', module: 'commons-io'
        }
        compile 'commons-io:commons-io:1.3.2'
    
    }


    app.gradle
    // Top-level build file where you can add configuration options common to all sub-projects/modules.
    
    buildscript {
        repositories {
            mavenCentral()
        }
    
        dependencies {
            classpath 'com.android.tools.build:gradle:1.2.3'
    
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }
    }
    
    
    repositories{
        mavenLocal()
        mavenCentral()
    }
    
    allprojects {
        repositories {
            jcenter()
        }
    }
    Ответ написан
    Комментировать