在Android应用程序中使用KSOAP2和两个模块

时间:2015-05-21 20:44:33

标签: android android-studio android-ksoap2

我正在尝试使用两个模块开发Android应用程序。

App模块是我的应用程序。 Lib模块是一个封装一些可重用代码的库。

我在两个模块都需要KSOAP2 lib,并且我将* .jar KSOAP文件放在两个模块的lib文件夹中,但是我的应用程序没有编译。

那么,任何人都可以帮助我吗?

这里是两个模块的build.gradle文件

应用模块

fflush

Lib模块

    apply plugin: 'com.android.application'

    android {
        compileSdkVersion 20
        buildToolsVersion "20.0.0"

        defaultConfig {
            applicationId "com.regazzo.inventariowms"
            minSdkVersion 16
            targetSdkVersion 20
            versionCode 1
            versionName "1.0"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }

    repositories {
        mavenCentral()

        maven {
            url "http://dl.bintray.com/journeyapps/maven"
        }
    }

    dependencies {
        compile fileTree(include: ['*.jar'], dir: 'libs')

        compile files('libs/ksoap2-android-assembly-3.4.0-jar-with-dependencies.jar')
        //compile 'com.android.support:appcompat-v7:21.0.3'
        //compile 'com.beardedhen:androidbootstrap:+'
        // Supports Android 4.0.3 and later (API level 15)
        compile 'com.journeyapps:zxing-android-embedded:2.0.1@aar'
        // Supports Android 2.1 and later (API level 7), but not optimal for later Android versions.
        // If you only plan on supporting Android 4.0.3 and up, you don't need to include this.
        compile 'com.journeyapps:zxing-android-legacy:2.0.1@aar'
        // Convenience library to launch the scanning and encoding Activities.
        // It automatically picks the best scanning library from the above two, depending on the
        // Android version and what is available.
        compile 'com.journeyapps:zxing-android-integration:2.0.1@aar'
        // Version 3.0.x of zxing core contains some code that is not compatible on Android 2.2 and earlier.
        // This mostly affects encoding, but you should test if you plan to support these versions.
        // Older versions e.g. 2.2 may also work if you need support for older Android versions.
        compile 'com.google.zxing:core:3.0.1'
        compile project(':baselib')
    }

0 个答案:

没有答案
相关问题