From 7f24e08cce6f2bff9b233ccd961166eec07ffa41 Mon Sep 17 00:00:00 2001 From: Dmitry Kunin Date: Thu, 27 Feb 2014 15:21:56 +0300 Subject: [PATCH] Removed unused gridlayout. --- .../3rd_party/gridlayout/AndroidManifest.xml | 20 -- android/3rd_party/gridlayout/README.txt | 65 ------ android/3rd_party/gridlayout/build.xml | 92 --------- .../libs/android-support-v7-gridlayout.jar | Bin 38918 -> 0 bytes .../3rd_party/gridlayout/proguard-project.txt | 20 -- .../3rd_party/gridlayout/project.properties | 15 -- .../3rd_party/gridlayout/res/values/attrs.xml | 187 ------------------ .../gridlayout/res/values/dimens.xml | 7 - android/3rd_party/gridlayout/src/.readme | 2 - android/project.properties | 1 - android/res/layout/info_box_geo.xml | 3 +- 11 files changed, 1 insertion(+), 411 deletions(-) delete mode 100644 android/3rd_party/gridlayout/AndroidManifest.xml delete mode 100644 android/3rd_party/gridlayout/README.txt delete mode 100644 android/3rd_party/gridlayout/build.xml delete mode 100644 android/3rd_party/gridlayout/libs/android-support-v7-gridlayout.jar delete mode 100644 android/3rd_party/gridlayout/proguard-project.txt delete mode 100644 android/3rd_party/gridlayout/project.properties delete mode 100644 android/3rd_party/gridlayout/res/values/attrs.xml delete mode 100644 android/3rd_party/gridlayout/res/values/dimens.xml delete mode 100644 android/3rd_party/gridlayout/src/.readme diff --git a/android/3rd_party/gridlayout/AndroidManifest.xml b/android/3rd_party/gridlayout/AndroidManifest.xml deleted file mode 100644 index 97f7be8d2c..0000000000 --- a/android/3rd_party/gridlayout/AndroidManifest.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - diff --git a/android/3rd_party/gridlayout/README.txt b/android/3rd_party/gridlayout/README.txt deleted file mode 100644 index 3c214fd68e..0000000000 --- a/android/3rd_party/gridlayout/README.txt +++ /dev/null @@ -1,65 +0,0 @@ -Library Project including compatibility GridLayout. - -This can be used by an Android project to provide -access to GridLayout on applications running on API 7+. - -There is technically no source, but the src folder is necessary -to ensure that the build system works. The content is actually -located in libs/android-support-v7-gridlayout.jar. -The accompanying resources must also be included in the application. - - -USAGE: - -Make sure you use in your -layouts instead of . -Same for instead of . - -Additionally, all of GridLayout's attributes should be put in the -namespace of the app, as those attributes have been redefined in -the library so that it can run on older platforms that don't offer -those attributes in their namespace. - -To know which attributes need the application namespace, look at -the two declare-styleable declared in res/values/attrs.xml - - - -For instance: - - - <===== notice how we're using app:columnCount here, not android:columnCount! - -