This file contains hidden or 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
# to enable eclipse to properly handle git ssh | |
# versions eclipse 3.5 and up | |
# its jgit dependency | |
GIT_SSH =/usr/bin/ssh | |
export PATH=$GIT_SSH:$PATH |
This file contains hidden or 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
# To have correct env properties setup for android | |
# NDK | |
ANDROID_NDK_HOME=/home/fredgrott/opt/android/android-ndk-r7 | |
export PATH=$ANDROID_NDK_HOME:$PATH | |
# ANDROID SDK | |
ANDROID_SDK_HOME=/home/fredgrott/opt/android/android-sdk-linux | |
export PATH=$ANDROID_SDK_HOME/tools:$ANDROID_SDK_HOME/platform-tools:$PATH |
This file contains hidden or 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
# GRadle | |
GRADLE_HOME=/home/fredgrott/opt/gradle-1.0-milestone-6 | |
export PATH=$GRADLE_HOME/bin:$PATH |
This file contains hidden or 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
# JAVA_HOME | |
JAVA_HOME=/usr/lib/jvm/default-java | |
export PATH=$JAVA_HOME:$PATH | |
# GROOVY_HOME | |
GROOVY_HOME=/usr/bin/groovy | |
export PATH=$GROOVY_HOME:$PATH | |
# JYTHON_HOME | |
JYTHON_HOME=/usr/bin/jython | |
export PATH=$JYTHON_HOME:$PATH | |
# GRAPHVIZ_EXECUTAble |
This file contains hidden or 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
# highlighting for non slides pages/posts | |
pygments: true | |
# we use rdiscount for markdown as than we can mix markdown and html within an | |
# namefile.html page | |
markdown: rdiscount | |
# we exclude the general project read,e.markdown file from jekyll processing | |
exclude: readme.markdown | |
# we enable relative pages | |
lsi: true | |
# we set post urls to /catname/title.html |
This file contains hidden or 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
--- | |
layout:page | |
title: GID Framework HowTo | |
--- |
This file contains hidden or 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
<!-- create a path with all the jar files, from the main project and the | |
libraries --> | |
<if> | |
<condition> | |
<isreference refid="project.libraries"/> | |
</condition> | |
<then> | |
<path id="jar.libs.ref"> | |
<fileset dir="${jar.libs.absolute.dir}" includes="*.jar" /> | |
<path refid="project.libraries.jars" /> |
This file contains hidden or 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
<!-- Eclipse AntClassloader gives weird results for | |
<dirname property="root.d" file="${basedir}"/> | |
we use this instead | |
--> | |
<dirname property="root.d" file="${ant.file.Beowolf}"/> |
This file contains hidden or 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
<xpath input="AndroidManifest.xml" expression="/manifest/application/@android:hasCode" | |
output="manifest.hasCode" default="true"/> | |
<xpath input="AndroidManifest.xml" | |
expression="/manifest/@package" output="manifest.package" /> |
This file contains hidden or 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
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/* | |
-optimizationpasses 5 | |
-dontusemixedcaseclassnames | |
-dontskipnonpubliclibraryclasses | |
-dontpreverify | |
-verbose | |
-ignorewarnings | |
-renamesourcefileattribute SourceFile | |
-keepattributes SourceFile,LineNumberTable,*Annotation*,Signature |