35 lines
1012 B
Java
35 lines
1012 B
Java
/**
|
|
*******************************************************************************
|
|
* @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__");
|
|
}
|
|
}
|