我在這樣的不同包中有兩個類。 基類: package com.example.artpackageprivate.base;
public class Base {
protected final Context mContext;
public Base(final Context context) {
mContext = context;
}
我最近升級了用於構建從19.1.0到21.0.2的應用程序的Android構建工具。該應用程序編譯,但是當我啓動我得到這個錯誤: net.i2p.android W/dalvikvm﹕ Invalid reg type for array index (1103759864)
net.i2p.android W/dalvikvm﹕ VFY: rejected Lnet/i2p/crypto/ed
如果您發現自己編寫了一個依賴於許多不同庫的大型Android應用程序(我建議您不要重新發明輪子),很可能您已經遇到過Dalvik可執行文件classes.dex的65k method limit。此外,如果您依賴大型圖書館,如Google Play服務SDK本身已包含more than 20k methods in version 5.0,則您必須使用use tricks like strippi
這個問題是我的earlier question的後續行動。 下面是與該問題相同的示例。 import android.os.SystemClock;
/**
* Command that sends key events to the device, either by their keycode, or by
* desired character output.
*/
public