3

アプリケーションをビルドするために maven-android-plugin を使用していますが、気に入っています。

私が混乱しているのは、付属の android sources.jar ファイルです。で調べるInstrumentationTestRunnerandroid-1.5_r4-sources.jar、ランダムな例を選ぶと、次のようになります。

package android.test;
public class InstrumentationTestRunner
  extends android.app.Instrumentation
  implements android.test.TestSuiteProvider
{
public  InstrumentationTestRunner() { throw new RuntimeException("Stub!"); }
public  void onCreate(android.os.Bundle arguments) { throw new RuntimeException("Stub!"); }
protected  android.test.AndroidTestRunner getAndroidTestRunner() { throw new RuntimeException("Stub!"); }
public  void onStart() { throw new RuntimeException("Stub!"); }
public  junit.framework.TestSuite getTestSuite() { throw new RuntimeException("Stub!"); }
public  junit.framework.TestSuite getAllTests() { throw new RuntimeException("Stub!"); }
public  java.lang.ClassLoader getLoader() { throw new RuntimeException("Stub!"); }
public static final java.lang.String REPORT_VALUE_ID = "InstrumentationTestRunner";
public static final java.lang.String REPORT_KEY_NUM_TOTAL = "numtests";
public static final java.lang.String REPORT_KEY_NUM_CURRENT = "current";
public static final java.lang.String REPORT_KEY_NAME_CLASS = "class";
public static final java.lang.String REPORT_KEY_NAME_TEST = "test";
public static final int REPORT_VALUE_RESULT_START = 1;
public static final int REPORT_VALUE_RESULT_OK = 0;
public static final int REPORT_VALUE_RESULT_ERROR = -1;
public static final int REPORT_VALUE_RESULT_FAILURE = -2;
public static final java.lang.String REPORT_KEY_STACK = "stack";
}

これはあまり役に立たず、明らかに実際のソース コードではありませ

私のポンは次のようになります。

<dependencies>
    ...
    <dependency>
        <groupId>com.google.android</groupId>
        <artifactId>android</artifactId>
        <version>1.5_r4</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

デバッグを支援するために maven-android-plugin から実際の Android ソースを取得する方法はありますか?

4

1 に答える 1

1

このhttps://github.com/joakime/android-sdkfidoを見ているプロジェクトが進行中です。中央の android jar がスタブ化された jar である理由は、同様にスタブ化された sdk の実際の jar と比較する必要があるためです。これは、Google 名前空間で中央に公開できるようにするために必要でした。

于 2011-02-14T19:06:57.627 に答える