Log Android hardware at startup (thanks, rettichschnidi!).

Fixes Bugzilla #2653.
main
Ryan C. Gordon 2015-04-08 01:37:17 -04:00
parent 6a126a48df
commit 8da7e8adc9
1 changed files with 2 additions and 0 deletions

View File

@ -114,6 +114,8 @@ public class SDLActivity extends Activity {
// Setup
@Override
protected void onCreate(Bundle savedInstanceState) {
Log.v("SDL", "Device: " + android.os.Build.DEVICE);
Log.v("SDL", "Model: " + android.os.Build.MODEL);
Log.v("SDL", "onCreate():" + mSingleton);
super.onCreate(savedInstanceState);