diff --git a/sources/android/PROJECT_NAME.java b/sources/android/PROJECT_NAME.java new file mode 100644 index 00000000..c145f734 --- /dev/null +++ b/sources/android/PROJECT_NAME.java @@ -0,0 +1,34 @@ +/** +******************************************************************************* +* @file __PROJECT_NAME__.java +* @brief Java __PROJECT_NAME__ code. +* @author Edouard DUPIN, Kevin BILLONNEAU +* @date 11/07/2012 +* @par Project +* ewol +* +* @par Copyright +* Copyright 2011 Edouard DUPIN, all right reserved +* +* This software is distributed in the hope that it will be useful, but WITHOUT +* ANY WARRANTY. +* +* Licence summary : +* You can modify and redistribute the sources code and binaries. +* You can send me the bug-fix +* +* Term of the licence in in the file licence.txt. +* +******************************************************************************* +*/ + +package __PROJECT_ORG_TYPE__.__PROJECT_VENDOR__.__PROJECT_PACKAGE__; + +import org.ewol.EwolActivity; + +public class __PROJECT_NAME__ extends EwolActivity { + public void onCreate(android.os.Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + initApkPath("__PROJECT_ORG_TYPE__", "__PROJECT_VENDOR__", "__PROJECT_PACKAGE__"); + } +}