ProjectActivity.java 802 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. package ${ANDROID_PACKAGE};
  9. import android.util.Log;
  10. import com.amazon.lumberyard.LumberyardActivity;
  11. ////////////////////////////////////////////////////////////////////////////////////////////////////
  12. public class ${ANDROID_PROJECT_ACTIVITY} extends LumberyardActivity
  13. {
  14. // since we are using the NativeActivity, all we need to manually load is the
  15. // shared c++ libray we are using
  16. static
  17. {
  18. Log.d("LMBR", "BootStrap: Starting Library load");
  19. System.loadLibrary("c++_shared");
  20. Log.d("LMBR", "BootStrap: Finished Library load");
  21. }
  22. }