diff --git a/graphics/screenshot_phone_dark.png b/graphics/screenshot_phone_dark.png deleted file mode 100755 index 24468ad74..000000000 Binary files a/graphics/screenshot_phone_dark.png and /dev/null differ diff --git a/graphics/screenshot_phone_light.png b/graphics/screenshot_phone_light.png deleted file mode 100755 index cbc7c57f2..000000000 Binary files a/graphics/screenshot_phone_light.png and /dev/null differ diff --git a/graphics/screenshot_phone_notifications.png b/graphics/screenshot_phone_notifications.png deleted file mode 100755 index def74a668..000000000 Binary files a/graphics/screenshot_phone_notifications.png and /dev/null differ diff --git a/graphics/screenshot_phone_sort.png b/graphics/screenshot_phone_sort.png deleted file mode 100755 index 155bad24b..000000000 Binary files a/graphics/screenshot_phone_sort.png and /dev/null differ diff --git a/graphics/screenshot_phone_task_edit.png b/graphics/screenshot_phone_task_edit.png deleted file mode 100755 index b84621dba..000000000 Binary files a/graphics/screenshot_phone_task_edit.png and /dev/null differ diff --git a/graphics/screenshot_phone_widgets.png b/graphics/screenshot_phone_widgets.png deleted file mode 100755 index bef2d8c68..000000000 Binary files a/graphics/screenshot_phone_widgets.png and /dev/null differ diff --git a/graphics/screenshot_tablet_landscape.png b/graphics/screenshot_tablet_landscape.png deleted file mode 100755 index 4057cf6d4..000000000 Binary files a/graphics/screenshot_tablet_landscape.png and /dev/null differ diff --git a/graphics/screenshot_tablet_navigation.png b/graphics/screenshot_tablet_navigation.png deleted file mode 100755 index e036134e1..000000000 Binary files a/graphics/screenshot_tablet_navigation.png and /dev/null differ diff --git a/graphics/screenshot_tasks.xml b/graphics/screenshot_tasks.xml deleted file mode 100644 index 6ad059238..000000000 --- a/graphics/screenshot_tasks.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/scripts/find-unused-drawables.sh b/scripts/find-unused-drawables.sh deleted file mode 100755 index 986316d62..000000000 --- a/scripts/find-unused-drawables.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -for DIR in $(ls -d src/main/res/drawable*); do - for file in $(ls -l ${DIR} | awk '{ print $9}' | sed 's/\..\+//g'); do - filename=`basename ${file}` - filename=${filename%%.*} - git grep -q ${filename} . - if [ $? -ne 0 ]; then - echo -e "${DIR}/${file} not used" - fi; - done; -done; - #let "count+=$(grep -c @drawable/$file $SRCFILE)"; - #let "count+=$(grep -c R.drawable.$file $SRCFILE)"; diff --git a/scripts/find-unused-layouts.sh b/scripts/find-unused-layouts.sh deleted file mode 100755 index 6d92ee939..000000000 --- a/scripts/find-unused-layouts.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -for DIR in $(ls -d src/main/res/layout*); do - for file in $(ls -l ${DIR} | awk '{ print $9}' | sed 's/\..\+//g'); do - filename=`basename ${file}` - filename=${filename%.*} - git grep -q ${filename} . - if [ $? -ne 0 ]; then - echo -e "${DIR}/${file} not used" - fi; - done; -done; diff --git a/scripts/find-unused-strings.rb b/scripts/find-unused-strings.rb deleted file mode 100644 index fe795c247..000000000 --- a/scripts/find-unused-strings.rb +++ /dev/null @@ -1,18 +0,0 @@ -files = Dir.glob('src/main/res/values/*.xml') -files.each do |path| - file = File.new(path) - file.read.scan(//) do |match| - result = `git grep R.string.#{match[0]}` + `git grep string\/#{match[0]}` - puts "#{path} - #{match[0]}" if result.empty? - end - file = File.new(path) - file.read.scan(//) do |match| - result = `git grep R.array.#{match[0]}` + `git grep array\/#{match[0]}` - puts "#{path} - #{match[0]}" if result.empty? - end -end -file = File.new('src/main/res/values/attrs.xml') -file.read.scan(//) do |match| - result = `git grep R.attr.#{match[0]}` + `git grep "?attr/#{match[0]}"` - puts "#{file.path} - #{match[0]}" if result.empty? -end