Skip to content

Commit

Permalink
silent phone android v1.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronald Krueger committed Oct 2, 2013
1 parent ffd18e9 commit 3a4b2c9
Show file tree
Hide file tree
Showing 2,165 changed files with 533,895 additions and 1,585 deletions.
1 change: 1 addition & 0 deletions .build-release/README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This directory is for build and release notes and tools for the slient-phone/scandroid repo.
46 changes: 46 additions & 0 deletions .build-release/android-build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/bin/bash

# This script expects the following environment variables (values can differ):
#
# ANDROID_ADT=/opt/adt-bundle-linux-x86_64-20130522
# ANDROID_ANT=/opt/adt-bundle-linux-x86_64-20130522/eclipse/plugins/org.apache.ant_1.8.3.v201301120609/bin/ant
# ANDROID_NDK=/opt/android-ndk-r8e
# ANDROID_SDK=/opt/android-sdk-linux
#
# SRC_ROOT=$HOME
# AUTOMATED_BUILD=1

# derived locations
#
SCANDROID_ROOT=$SRC_ROOT

# cleanup
#
rm -rf $SCANDROID_ROOT/obj
rm -rf $SCANDROID_ROOT/libs/armeabi

# ndk jni builds
#
pushd $SCANDROID_ROOT
ndk-build
# ndk-build -d -B V=1 NDK_LOG=1
popd

# android build
#
pushd $SCANDROID_ROOT

echo "sdk.dir=$ANDROID_SDK" > local.properties
echo "ndk.dir=$ANDROID_NDK" >> local.properties

android update project --target android-17 --name ActionBarSherlock --path support/ActionBarSherlock/library

$ANDROID_ANT \
-Dkey.store=$SCANDROID_ROOT/.build-release/test-debug.keystore \
-Dkey.store.password=android \
-Dkey.alias=androiddebugkey \
-Dkey.alias.password=android \
clean release

popd

14 changes: 14 additions & 0 deletions .build-release/build-info.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

# perhaps something could be done to make this one command
git log -n 1 --pretty=format:"%cd :: %h" > build-header.txt
echo >> build-header.txt
git log -n 1 --pretty=format:"%cn" >> build-header.txt
echo >> build-header.txt
git log -n 1 --pretty=format:"%s" >> build-header.txt
echo >> build-header.txt

# Jenkins build variable - has format of timestamp
echo $BUILD_ID > build-id.txt

# add a vacuous comment
Binary file added .build-release/test-debug.keystore
Binary file not shown.
9 changes: 9 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Android generated files #
###########################
android.keystore
local.properties
bin/
gen/
obj/
libs/armeabi/

# OS generated files #
######################
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db

# Eclipse generated files #
###########################
.settings/org.eclipse.jdt.core.prefs

# Backup files
##################
*~

# Android Studio/IntelliJ and gradle directories
##################
out/
build/
.gradle/

3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions .idea/codeStyleSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/libraries/SilentContacts_0_1_0.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/libraries/android_support_v4.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/libraries/bin.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/libraries/bin1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/libraries/dexedLibs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/libraries/library_aar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/libraries/libs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3a4b2c9

Please sign in to comment.