forked from tidev/ti.imagefactory
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa2f8f0
commit 276dc03
Showing
19 changed files
with
129 additions
and
326 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Files in this folder are copied directory into the compiled product directory | ||
when the Android app is compiled: | ||
|
||
<project-dir>/build/android/bin/assets/Resources/ | ||
|
||
Files in this directory are copied directly on top of whatever files are already | ||
in the build directory, so please be careful that your files don't clobber | ||
essential project files or files from other modules. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,56 @@ | ||
<project name="imagefactory" default="dist"> | ||
<description> | ||
Ant build script for Titanium Android module imagefactory | ||
</description> | ||
<description> | ||
Ant build script for Titanium Android module imagefactory | ||
</description> | ||
|
||
<property name="ti.module.root" location="${basedir}"/> | ||
<property file="build.properties"/> | ||
<property name="ti.module.root" location="${basedir}"/> | ||
<property file="build.properties" /> | ||
|
||
<import file="${titanium.platform}/../module/android/build.xml"/> | ||
<!-- Make sure 'architectures' is in manifest file --> | ||
<property file="${ti.module.root}/manifest" prefix="manifest"/> | ||
<fail message="Missing required manifest key 'architectures'."> | ||
<condition> | ||
<not> | ||
<isset property="manifest.architectures"/> | ||
</not> | ||
</condition> | ||
</fail> | ||
|
||
<fail message="Manifest key 'architectures' has no value."> | ||
<condition> | ||
<not> | ||
<length string="${manifest.architectures}" trim="true" when="greater" length="0"/> | ||
</not> | ||
</condition> | ||
</fail> | ||
|
||
<!-- Copy documentation subdirectories --> | ||
<mkdir dir="${basedir}/documentation"/> | ||
<copy todir="${basedir}/documentation"> | ||
<fileset dir="${basedir}/../documentation"/> | ||
</copy> | ||
|
||
<!-- Copy example subdirectories --> | ||
<mkdir dir="${basedir}/example"/> | ||
<copy todir="${basedir}/example"> | ||
<fileset dir="${basedir}/../example"/> | ||
</copy> | ||
|
||
<!-- Copy assets subdirectories --> | ||
<mkdir dir="${basedir}/assets"/> | ||
<copy todir="${basedir}/assets"> | ||
<fileset dir="${basedir}/../assets"/> | ||
</copy> | ||
|
||
<!-- Copy license --> | ||
<copy todir="${basedir}" file="${basedir}/../LICENSE"/> | ||
|
||
<target name="cleancopy" description="Delete old copies"> | ||
<delete dir="${basedir}/documentation"/> | ||
<delete dir="${basedir}/example"/> | ||
<delete dir="${basedir}/assets"/> | ||
<delete file="${basedir}/LICENSE"/> | ||
</target> | ||
|
||
<import file="${titanium.platform}/../module/android/build.xml"/> | ||
</project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
This folder is required by the build process even if no | ||
3rd party libraries are being used in the module. | ||
You can place any .jar dependencies in this directory and they will be included | ||
when your module is being compiled. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ti:module xmlns:ti="http://ti.appcelerator.org" xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<!-- | ||
Similar to tiapp.xml, but contains module/platform specific | ||
configuration in <iphone> and <android> sections | ||
--> | ||
<iphone> | ||
</iphone> | ||
<android xmlns:android="http://schemas.android.com/apk/res/android"> | ||
</android> | ||
<!-- | ||
Similar to tiapp.xml, but contains module/platform specific | ||
configuration in <iphone> and <android> sections | ||
--> | ||
<iphone> | ||
</iphone> | ||
<android xmlns:android="http://schemas.android.com/apk/res/android"> | ||
</android> | ||
</ti:module> |
Oops, something went wrong.