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! - -