diff options
author | bonmas14 <bonmas14@gmail.com> | 2025-09-20 22:28:15 +0300 |
---|---|---|
committer | bonmas14 <bonmas14@gmail.com> | 2025-09-20 22:28:15 +0300 |
commit | cdda4c4182c9ee068567529715e4a5c68a8efb58 (patch) | |
tree | 38a63f62a64018a2d35fc33354f8589fd33b7514 /deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging | |
download | c_wizard-cdda4c4182c9ee068567529715e4a5c68a8efb58.tar.gz c_wizard-cdda4c4182c9ee068567529715e4a5c68a8efb58.zip |
Init commit v1.0
Diffstat (limited to 'deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging')
5 files changed, 253 insertions, 0 deletions
diff --git a/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/AndroidManifest.xml b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/AndroidManifest.xml new file mode 100644 index 0000000..117e674 --- /dev/null +++ b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Changes made to Package Name should also be reflected in the Debugging - Package Name property, in the Property Pages --> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.$(ApplicationName)" android:versionCode="1" android:versionName="1.0"> + + <!-- This is the platform API where NativeActivity was introduced. --> + <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/> + + <!-- This .apk has no Java code itself, so set hasCode to false. --> + <application android:label="@string/app_name" android:hasCode="false"> + + <!-- Our activity is the built-in NativeActivity framework class. + This will take care of integrating with our NDK code. --> + <activity android:name="android.app.NativeActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:configChanges="orientation|keyboardHidden|screenSize" android:screenOrientation="landscape"> + <!-- Tell NativeActivity the name of our .so --> + <meta-data android:name="android.app.lib_name" android:value="main"/> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + </application> +</manifest> diff --git a/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/build.xml b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/build.xml new file mode 100644 index 0000000..0abadec --- /dev/null +++ b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/build.xml @@ -0,0 +1,90 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project name="$(projectname)" default="help"> + + <!-- The ant.properties file can be created by you. It is only edited by the + 'android' tool to add properties to it. + This is the place to change some Ant specific build properties. + Here are some properties you may want to change/update: + + source.dir + The name of the source directory. Default is 'src'. + out.dir + The name of the output directory. Default is 'bin'. + + For other overridable properties, look at the beginning of the rules + files in the SDK, at tools/ant/build.xml + + Properties related to the SDK location or the project target should + be updated using the 'android' tool with the 'update' action. + + This file is an integral part of the build system for your + application and should be checked into Version Control Systems. + + --> + <property file="ant.properties" /> + + <!-- if sdk.dir was not set from one of the property file, then + get it from the ANDROID_HOME env var. --> + <property environment="env" /> + <condition property="sdk.dir" value="${env.ANDROID_HOME}"> + <isset property="env.ANDROID_HOME" /> + </condition> + + <!-- The project.properties file contains project specific properties such as + project target, and library dependencies. Lower level build properties are + stored in ant.properties + + This file is an integral part of the build system for your + application and should be checked into Version Control Systems. --> + <loadproperties srcFile="project.properties" /> + + <!-- quick check on sdk.dir --> + <fail + message="sdk.dir is missing. Make sure ANDROID_HOME environment variable is correctly set." + unless="sdk.dir" + /> + + <!-- + Import per project custom build rules if present at the root of the project. + This is the place to put custom intermediary targets such as: + -pre-build + -pre-compile + -post-compile (This is typically used for code obfuscation. + Compiled code location: ${out.classes.absolute.dir} + If this is not done in place, override ${out.dex.input.absolute.dir}) + -post-package + -post-build + -pre-clean + --> + <import file="custom_rules.xml" optional="true" /> + + <!-- Import the actual build file. + + To customize existing targets, there are two options: + - Customize only one target: + - copy/paste the target into this file, *before* the + <import> task. + - customize it to your needs. + - Customize the whole content of build.xml + - copy/paste the content of the rules files (minus the top node) + into this file, replacing the <import> task. + - customize to your needs. + + *********************** + ****** IMPORTANT ****** + *********************** + In all cases you must update the value of version-tag below to read 'custom' instead of an integer, + in order to avoid having your file be overridden by tools such as "android update project" + --> + <!-- version-tag: 1 --> + <import file="${sdk.dir}/tools/ant/build.xml" /> + + <target name="-pre-compile"> + <path id="project.all.jars.path"> + <path path="${toString:project.all.jars.path}"/> + <fileset dir="${jar.libs.dir}"> + <include name="*.jar"/> + </fileset> + </path> + </target> +</project> diff --git a/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/project.properties b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/project.properties new file mode 100644 index 0000000..802a49f --- /dev/null +++ b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/project.properties @@ -0,0 +1,3 @@ +# Project target +target=$(androidapilevel) +# Provide path to the directory where prebuilt external jar files are by setting jar.libs.dir= diff --git a/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/raylib_android.Packaging.androidproj b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/raylib_android.Packaging.androidproj new file mode 100644 index 0000000..5d139d0 --- /dev/null +++ b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/raylib_android.Packaging.androidproj @@ -0,0 +1,134 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup Label="ProjectConfigurations"> + <ProjectConfiguration Include="Debug|ARM"> + <Configuration>Debug</Configuration> + <Platform>ARM</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|ARM"> + <Configuration>Release</Configuration> + <Platform>ARM</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Debug|ARM64"> + <Configuration>Debug</Configuration> + <Platform>ARM64</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|ARM64"> + <Configuration>Release</Configuration> + <Platform>ARM64</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Debug|x64"> + <Configuration>Debug</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|x64"> + <Configuration>Release</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Debug|x86"> + <Configuration>Debug</Configuration> + <Platform>x86</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|x86"> + <Configuration>Release</Configuration> + <Platform>x86</Platform> + </ProjectConfiguration> + </ItemGroup> + <PropertyGroup Label="Globals"> + <RootNamespace>raylib_android</RootNamespace> + <MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion> + <ProjectVersion>1.0</ProjectVersion> + <ProjectGuid>{b2231f0d-52da-4c55-8998-5886f766553c}</ProjectGuid> + </PropertyGroup> + <Import Project="$(AndroidTargetsPath)\Android.Default.props" /> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration"> + <UseDebugLibraries>true</UseDebugLibraries> + <ConfigurationType>Application</ConfigurationType> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration"> + <UseDebugLibraries>false</UseDebugLibraries> + <ConfigurationType>Application</ConfigurationType> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration"> + <UseDebugLibraries>true</UseDebugLibraries> + <ConfigurationType>Application</ConfigurationType> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration"> + <UseDebugLibraries>false</UseDebugLibraries> + <ConfigurationType>Application</ConfigurationType> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> + <UseDebugLibraries>true</UseDebugLibraries> + <ConfigurationType>Application</ConfigurationType> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> + <UseDebugLibraries>false</UseDebugLibraries> + <ConfigurationType>Application</ConfigurationType> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'" Label="Configuration"> + <UseDebugLibraries>true</UseDebugLibraries> + <ConfigurationType>Application</ConfigurationType> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" Label="Configuration"> + <UseDebugLibraries>false</UseDebugLibraries> + <ConfigurationType>Application</ConfigurationType> + </PropertyGroup> + <Import Project="$(AndroidTargetsPath)\Android.props" /> + <ImportGroup Label="ExtensionSettings" /> + <ImportGroup Label="Shared" /> + <PropertyGroup Label="UserMacros" /> + <PropertyGroup /> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> + <AntPackage> + <AndroidAppLibName>$(RootNamespace)</AndroidAppLibName> + </AntPackage> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'"> + <AntPackage> + <AndroidAppLibName>$(RootNamespace)</AndroidAppLibName> + </AntPackage> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> + <AntPackage> + <AndroidAppLibName>$(RootNamespace)</AndroidAppLibName> + </AntPackage> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> + <AntPackage> + <AndroidAppLibName>$(RootNamespace)</AndroidAppLibName> + </AntPackage> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> + <AntPackage> + <AndroidAppLibName>$(RootNamespace)</AndroidAppLibName> + </AntPackage> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> + <AntPackage> + <AndroidAppLibName>$(RootNamespace)</AndroidAppLibName> + </AntPackage> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'"> + <AntPackage> + <AndroidAppLibName>$(RootNamespace)</AndroidAppLibName> + </AntPackage> + </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'"> + <AntPackage> + <AndroidAppLibName>$(RootNamespace)</AndroidAppLibName> + </AntPackage> + </ItemDefinitionGroup> + <ItemGroup> + <Content Include="res\values\strings.xml" /> + <AntBuildXml Include="build.xml" /> + <AndroidManifest Include="AndroidManifest.xml" /> + <AntProjectPropertiesFile Include="project.properties" /> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\raylib_android.NativeActivity\raylib_android.NativeActivity.vcxproj"> + <Project>{bfb31759-4fca-4503-bc7c-a97f705efdb2}</Project> + </ProjectReference> + </ItemGroup> + <Import Project="$(AndroidTargetsPath)\Android.targets" /> + <ImportGroup Label="ExtensionTargets" /> +</Project>
\ No newline at end of file diff --git a/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/res/values/strings.xml b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/res/values/strings.xml new file mode 100644 index 0000000..cf004a7 --- /dev/null +++ b/deps/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/res/values/strings.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">raylib_android.Packaging</string> +</resources> |