2つのコンストラクタを追加し、あなたのコアプロジェクトクラスに属性:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
initialize(new MyGame(Build.MANUFACTURER,Build.MODEL), config);
}
:あなたはクラスのコンストラクタに値
Build.MANUFACTURERと
Build.MODELを渡すことができますあなたのAndroidプロジェクトの
AndroidLauncherで
public String model;
public String manufacturer;
public MyGame(){ } //for web, ios and desktop
public MyGame(String manufacturer, String model){ //for android
this.manufacturer = manufacturer;
this.model = model;
}
を
あなたはアマゾンのdevice specificationsに見えることができます、値はkindleに属しています。
[libGdxプラットフォーム固有コード](http://stackoverflow.com/questions/25743610/libgdx-platform-specific-code)の可能な複製。 – Tenfour04