diff --git a/bcdroid.manifest b/bcdroid.manifest deleted file mode 100644 index b6b37f4e..00000000 --- a/bcdroid.manifest +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -Sealed: true - diff --git a/build.xml b/build.xml deleted file mode 100644 index 4b3d6660..00000000 --- a/build.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/compare-to-official-release b/compare-to-official-release deleted file mode 100755 index 8e3a3003..00000000 --- a/compare-to-official-release +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/sh - -if [ $# -ne 2 ]; then - echo "Usage: $0 /path/to/Orbot-v15.0.1.apk /another/Orbot-v15.0.1.apk" - exit 1 -fi - -set -e -set -x - -test -e "$1" -test -e "$2" - -tmpdir=`mktemp -d /tmp/.compare-apks.XXXXXXXXXX` -apk1=$(basename $1) -apk2=$(basename $2) -sourcedir1=$(cd `dirname $1` && pwd) -sourcedir2=$(cd `dirname $2` && pwd) -apkname1=`echo $apk1 | sed 's,\.apk$,,'` -apkname2=`echo $apk2 | sed 's,\.apk$,,'` -dir1=$tmpdir/`echo $(dirname $1) | sed 's,[/ ],_,g'`-$apkname1 -dir2=$tmpdir/`echo $(dirname $2) | sed 's,[/ ],_,g'`-$apkname2 - -mkdir -p $dir1/zip -cd $dir1/zip -unzip "$sourcedir1/$apk1" -cd .. -apktool d --no-res --no-src "$sourcedir1/$apk1" -mv "$apkname1" apktool -# strip the full path to the zip for the comparison -unzip -l "$sourcedir1/$apk1" | sed 's,^\(Archive:\s\s*\)/.*/,\1,' > $dir1/unzip-l.txt -unzip -lv "$sourcedir1/$apk1" | sed 's,^\(Archive:\s\s*\)/.*/,\1,' > $dir1/unzip-lv.txt -zipinfo -lv "$sourcedir1/$apk1" | sed 's,^\(Archive:\s\s*\)/.*/,\1,' > $dir1/zipinfo-lv.txt -xxd "$sourcedir1/$apk1" > $dir1/xxd -for f in $dir1/zip/assets/*/*; do - xxd $f > $dir1/xxd-$(basename $f) -done - -mkdir -p $dir2/zip -cd $dir2/zip -unzip "$sourcedir2/$apk2" -cd .. -apktool d --no-res --no-src "$sourcedir2/$apk2" -mv "$apkname2" apktool -# strip the full path to the zip for the comparison -unzip -l "$sourcedir2/$apk2" | sed 's,^\(Archive:\s\s*\)/.*/,\1,' > $dir2/unzip-l.txt -unzip -lv "$sourcedir2/$apk2" | sed 's,^\(Archive:\s\s*\)/.*/,\1,' > $dir2/unzip-lv.txt -zipinfo -lv "$sourcedir2/$apk2" | sed 's,^\(Archive:\s\s*\)/.*/,\1,' > $dir2/zipinfo-lv.txt -xxd "$sourcedir2/$apk2" > $dir2/xxd -for f in $dir2/zip/assets/*/*; do - xxd $f > $dir2/xxd-$(basename $f) -done - -if which meld > /dev/null; then - meld $dir1 $dir2 -elif which opendiff > /dev/null; then - opendiff $dir1 $dir2 -else - echo "ERROR: meld or opendiff required for the comparison!" -fi - -rm -rf $dir1 $dir2 diff --git a/ic_launcher.svg b/ic_launcher.svg deleted file mode 100644 index 9d4176ab..00000000 --- a/ic_launcher.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 9984a03e..e5085392 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1 @@ -include ':jsocksAndroid', ':orbotservice' -include ':app' +include ':orbotservice' diff --git a/setup-ant b/setup-ant deleted file mode 100755 index fab844e1..00000000 --- a/setup-ant +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -set -e -set -x - -if ! which android > /dev/null; then - if [ -z $ANDROID_HOME ]; then - if [ -e ~/.android/bashrc ]; then - . ~/.android/bashrc - else - echo "'android' not found, ANDROID_HOME must be set!" - exit - fi - else - export PATH="${ANDROID_HOME}/tools:$PATH" - fi -fi - -# fetch target from project.properties -eval `grep '^target=' project.properties` - -projectname=`sed -n 's,.*name="app_name">\(.*\)<.*,\1,p' res/values/strings.xml` - -android update project --path . --name $projectname --target $target --subprojects - -for lib in `sed -n 's,^android\.library\.reference\.[0-9][0-9]*=\(.*\),\1,p' project.properties`; do - android update lib-project --path $lib --target $target -done diff --git a/web_hi_res_512.png b/web_hi_res_512.png deleted file mode 100644 index 2f8735c1..00000000 Binary files a/web_hi_res_512.png and /dev/null differ