Back to project page MobileCodeGenerator.
The source code is released under:
GNU General Public License
If you think the Android project MobileCodeGenerator listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/************************************************************************************************************************ * Copyright 2013 Gregorio Perego, Stefania Pezzetti * This file is part of it.polimi.mobilecodegenerator. * //from ww w. j a v a 2 s .c om * it.polimi.mobilecodegenerator is free software: * you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Foundation, * either version 3 of the License, or (at your option) any later version. * * it.polimi.mobilecodegenerator is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details.You should have received a copy of the GNU General Public License * along with it.polimi.mobilecodegenerator. If not, see <http://www.gnu.org/licenses/> * ***********************************************************************************************************************/ package android_extensions; import app_extensions.AppJavaUtil; public class AndroidConstants { private static String sourceFilesFolder = "utils/android_default_files"; public static String[] sourceFilesPaths = { sourceFilesFolder+"/libs/android-support-v4.jar", sourceFilesFolder+"/res/drawable-hdpi/ic_launcher.png", sourceFilesFolder+"/res/drawable-mdpi/ic_launcher.png", sourceFilesFolder+"/res/drawable-xhdpi/ic_launcher.png", sourceFilesFolder+"/res/drawable-xxhdpi/ic_launcher.png", sourceFilesFolder+"/res/values/dimens.xml", sourceFilesFolder+"/res/values/strings.xml", sourceFilesFolder+"/res/values/styles.xml", sourceFilesFolder+"/res/values-v11/styles.xml", sourceFilesFolder+"/res/values-v14/styles.xml", sourceFilesFolder+"/ic_launcher-web.png", sourceFilesFolder+"/proguard-project.txt", sourceFilesFolder+"/project.properties" }; public static String destinationFilesFolder = "src-gen/android/"+AppJavaUtil.APPLICATION_NAME; public static String[] destinationFilesPaths = { destinationFilesFolder+"/libs/android-support-v4.jar", destinationFilesFolder+"/res/drawable-hdpi/ic_launcher.png", destinationFilesFolder+"/res/drawable-mdpi/ic_launcher.png", destinationFilesFolder+"/res/drawable-xhdpi/ic_launcher.png", destinationFilesFolder+"/res/drawable-xxhdpi/ic_launcher.png", destinationFilesFolder+"/res/values/dimens.xml", destinationFilesFolder+"/res/values/strings.xml", destinationFilesFolder+"/res/values/styles.xml", destinationFilesFolder+"/res/values-v11/styles.xml", destinationFilesFolder+"/res/values-v14/styles.xml", destinationFilesFolder+"/ic_launcher-web.png", destinationFilesFolder+"/proguard-project.txt", destinationFilesFolder+"/project.properties" }; public static String rawFolder = destinationFilesFolder+"/res/raw"; public static String assetsFolder = destinationFilesFolder+"/assets"; public static String drawableFolder = destinationFilesFolder+"/res/drawable"; }