错误的xml正在膨胀机器人

时间:2015-06-05 08:40:27

标签: android xml android-library payu

我有一个库项目,它碰撞了像activity_login等的xml名称。 现在,即使我在库项目中运行Actvity就是这种情况,也是在膨胀我的xml而不是自己的xml,然后抛出NPE。

我已经尝试过为它提供完全限定的R文件名,但它似乎仍然在冒错文件。

Ps:我试过干净的构建在AS1.2.1.1上都不起作用。  这是AS的错误还是我做错了什么

这是我的gradle文件

buildscript {
    repositories {
        maven { url 'http://download.crashlytics.com/maven' }
    }

    dependencies {
        classpath 'com.crashlytics.tools.gradle:crashlytics-gradle:1.+'
    }
}
apply plugin: 'com.android.application'
apply plugin: 'crashlytics'

repositories {
    maven { url 'http://download.crashlytics.com/maven' }
}


android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.xxx"
        minSdkVersion 14
        targetSdkVersion 21
        versionCode 17
        versionName "2.4.3"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
        }
    }
}

   dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:21.0.+'
    compile 'com.google.android.gms:play-services:6.5.+'
    compile 'com.android.support:support-v4:21.0.+'
    compile 'com.android.support:recyclerview-v7:22.0.+'
    compile 'com.android.support:cardview-v7:21.0.+'
    compile project('libraries:holograph')
    compile project('libraries:facebook')
    compile files('libs/google-api-client-android-1.18.0-rc.jar')
    compile files('libs/google-api-client-java6-1.18.0-rc.jar')
    compile files('libs/google-api-client-1.18.0-rc.jar')
    compile 'com.crashlytics.android:crashlytics:1.+'
    compile project(':chartlib')
    compile project(':payu')
}

还有build.gradle of payu

apply plugin: 'com.android.library'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        minSdkVersion 8
        targetSdkVersion 21
        versionCode 2
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile('de.keyboardsurfer.android.widget:crouton:1.8.+@aar') {
        exclude module: 'support-v7'
        compile 'com.android.support:appcompat-v7:18.0.+'
    }
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'de.greenrobot:eventbus:2.2.1'
    compile 'com.loopj.android:android-async-http:1.4.6'
    compile 'com.mobsandgeeks:android-saripaar:1.0.3'
    compile project(':CustomBrowser')
}

我的 Settings.gradle

include ':app', ':payUMoneysdk', ':CustomBrowser'

1 个答案:

答案 0 :(得分:0)

这是通过设计发生的,将其视为覆盖库活动布局。我将它广泛用于字符串,颜色等,它更有用。

只需重命名项目XML布局。