12

我正在尝试将我公司的项目从 Maven 迁移到 Gradle,到目前为止,我已经能够将所有 POM 转换为相应的 build.gradle 文件,但是在构建时遇到了子模块中的问题。

- Core-UI
---- Utils
---- FieldPanels

子模块 FieldPanel 使用 Utils 中定义的颜色和其他资源。我尝试将 Utils 项目添加为依赖项,但它不起作用,我错过了什么?

/home/development/AndroidStudioProjects/com.project/core-ui/common.android.fieldpanels/build/bundles/debug/res/layout/base_summary_step_layout.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@color/wizard_summary_bg').

使用 gradle.build

buildscript {
    repositories {
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:0.5.2'
    }
}

apply plugin: 'android-library'

android {
    sourceSets {
        main {
            manifest {
                srcFile 'AndroidManifest.xml'
            }
            res {
                srcDirs = [
                        'res'
                ]
            }
        }
    }
    compileSdkVersion 15
    buildToolsVersion '17.0'

    dependencies {
        compile group: 'com.company.ipos.android', name: 'commons.pos.micropos.api', version: '0.0.35-SNAPSHOT'
        compile group: 'org.slf4j', name: 'slf4j-api', version: '1.6.5'
    }
}

repositories {
    maven {
        credentials {
            username mavenUser
            password mavenPassword
        }

        url repoUrl
    }
    maven {
        credentials {
            username mavenUser
            password mavenPassword
        }

        url libsReleasesUrl
    }
    maven {
        credentials {
            username mavenUser
            password mavenPassword
        }

        url libsSnapshotsUrl
    }
}

fieldPanels gradle.build

buildscript {
    repositories {
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:0.5.2'
    }
}

apply plugin: 'android-library'

repositories {
    maven {
        credentials {
            username mavenUser
            password mavenPassword
        }

        url repoUrl
    }
    maven {
        credentials {
            username mavenUser
            password mavenPassword
        }

        url libsReleasesUrl
    }
    maven {
        credentials {
            username mavenUser
            password mavenPassword
        }

        url libsSnapshotsUrl
    }
}

android {
    dependencies {
        compile group: 'com.company.ipos.android', name: 'commons.pos.micropos.api', version: '0.0.35-SNAPSHOT'
        //compile group: 'com.company.ipos.android', name: 'common.android.utils', version: '0.0.35-SNAPSHOT'
        compile project(":common.android.utils")
        compile group: 'org.slf4j', name: 'slf4j-api', version: '1.6.5'
    }
    sourceSets {
        main {
            manifest {
                srcFile 'AndroidManifest.xml'
            }
            res {
                srcDirs = [
                        'res',
                ]
            }
        }
    }
    compileSdkVersion 15
    buildToolsVersion '17.0'
}
4

3 回答 3

2

你能包括你的settings.gradle吗?我想知道您的编译依赖项中是否有不正确的路径。

以下是您如何声明从 fieldPanels 到 utils 的依赖关系

compile project(":common.android.utils")

这意味着 utils 库模块必须知道 gradle ":common.android.utils"。也许应该是这个?

compile project(":Core-UI:Utils")
于 2014-02-27T19:20:53.093 回答
1

以“2 个图书馆项目 LA 和 LB 和 LB 依赖于 LA”为例,这里有几个工作示例。

假设 LA 有以下 strings.xml 文件

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="la_resource">la resource</string>
</resources>

假设 LB 有以下 strings.xml 文件

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="lb_resource">lb resource</string>
</resources>

假设我们要在 LB 中定义一个名为 TestView 的自定义视图。TestView 将引用来自 LA 的 la_resource 和来自 LB 的 lb_resource。这是TestView的来源

package com.example.myapplication3.lb;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.TextView;

public class TestView extends TextView {
    public TestView(Context context) {
        super(context);
        setText(context.getString(R.string.la_resource) + " " + context.getString(R.string.lb_resource));
    }

    public TestView(Context context, AttributeSet attrs) {
        super(context, attrs);
        setText(context.getString(R.string.la_resource) + " " + context.getString(R.string.lb_resource));
    }

    public TestView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        setText(context.getString(R.string.la_resource) + " " + context.getString(R.string.lb_resource));
    }
}

假设我们要在 LB 中定义另一个名为 TestView2 的自定义视图。TestView2 将扩展 XML 布局。XML 布局将引用来自 LA 的 la_resource 和来自 LB 的 lb_resource。这是TestView2的来源

package com.example.myapplication3.lb;

import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.FrameLayout;
import android.widget.TextView;

import org.w3c.dom.Text;

public class TestView2 extends FrameLayout {
    public TestView2(Context context) {
        super(context);
        LayoutInflater.from(context).inflate(R.layout.test_view_2, this);
    }

    public TestView2(Context context, AttributeSet attrs) {
        super(context, attrs);
        LayoutInflater.from(context).inflate(R.layout.test_view_2, this);
    }

    public TestView2(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        LayoutInflater.from(context).inflate(R.layout.test_view_2, this);
    }
}

这是 test_view_2.xml 的来源

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/la_resource"
        android:padding="4dp" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/lb_resource" />

</LinearLayout>
于 2014-03-06T07:12:29.510 回答
0

如果您在 Android Studio/IDEA 中构建时遇到此问题,请不要忘记library选中项目设置中库模块上的复选框。

另外,尝试使用不同版本的 android 插件,例如 0.8+。还有一个想法:android插件和7 java存在并且可能仍然存在不同的问题,如果您使用它,请尝试使用6。

于 2014-03-04T07:23:19.180 回答